Original JSON (Python 3.6) performance differs completely in performance for unicode strings that contain non-us-ascii characters. So, could you provide performance comparison for case ensure_ascii=False and national symbols in source strings? I mean dumps() / dump(). This is important since size of JSON document with ensure_ascii=True is mush bigger than with False.
for example, .dumps('привет, мир!' * 1000)
Original JSON (Python 3.6) performance differs completely in performance for unicode strings that contain non-us-ascii characters. So, could you provide performance comparison for case
ensure_ascii=Falseand national symbols in source strings? I meandumps() / dump(). This is important since size of JSON document withensure_ascii=Trueis mush bigger than withFalse.for example,
.dumps('привет, мир!' * 1000)