Fast way to print indented json

Description

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 use pprint-json instead of write-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 and write-object, added new :indent option to write. 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 in write-object should be (seq x).

Approach

I’ve followed the approach of the original code, but opted to pass indent and indent-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

Environment

None

Attachments

2

Activity

Show:

Alex Miller May 14, 2021 at 2:40 PM

Split and applied as two patches to retain attribution - Nikita's tests and Erik's modified code

Fixed

Details

Assignee

Reporter

Priority

Created December 15, 2014 at 6:18 PM
Updated May 14, 2021 at 2:40 PM
Resolved May 14, 2021 at 2:40 PM