Remix.run Logo
elcapitan 15 hours ago

Being able to parse without a lot of overhead and without allocations is quite interesting. E.g. when you process some massive json dump to just extract some properties (the Wikidata dumps come to mind).

adrianN 6 hours ago | parent [-]

If you want to do that you'd probably want to use a fast SAX parser, not something that naively looks at one byte at a time.