Fixed
Details
Assignee
UnassignedUnassignedReporter
Nikita ProkopovNikita ProkopovPriority
Major
Details
Details
Assignee
Unassigned
UnassignedReporter
Nikita Prokopov
Nikita ProkopovPriority

Created December 15, 2014 at 6:18 PM
Updated May 14, 2021 at 2:40 PM
Resolved May 14, 2021 at 2:40 PM
Hi!
Formatted json is very handy for human consumption, for example, while debugging or exploring JSON API. data.json offers formatting in a form of
pprint-json
. Problem is,pprint-json
is dead slow because it tries to fit everything within some line width limit. In practice it takes 20-100 times more time to usepprint-json
instead ofwrite-str
, up to the point where it just cannot be used in production:Proposed enhancement is very simple: indent new keys and array elements, but do not try to fit values into line width limit. For human, JSON formatted this way is still easy consumable, structure is evident. The only downside is that some lines might become very long.
In a patch attached, I modified
write-array
andwrite-object
, added new:indent
option towrite
. To print indented json, one can write now:(write-str data :indent true)
There's some performance penalty, of course, but relatively small:
I also fixed small bug:
(seq m)
thing inwrite-object
should be(seq x)
.Approach
I’ve followed the approach of the original code, but opted to pass
indent
andindent-level
through the options map rather than through dynamic vars. I kept the tests from the original code.should definitively be attributed to at least half of this patch
Benchmarks
Current master (b3efa80f119b7454020317b154625e084502ea23)
10b
100b
1k
10k
100k
511.915911 ns
2.820029 µs
16.223338 µs
180.02214 µs
1.675488 ms
With 0001-DJSON-18-Fast-way-to-print-indented-json.patch applied
10b
100b
1k
10k
100k
515.548864 ns
2.777886 µs
15.858645 µs
174.617341 µs
1.639900 ms