Building a high performance JSON parser

Oct 20, 2023

https://dave.cheney.net/high-performance-json.html

Superb walkthrough from Dave Cheney on building a JSON parser that's faster than the standard library parser, mainly by improving the API to return subslices of the input instead of allocating new objects.

Found via this article about improving JSON performance in CockroachDB

↑ up