Hacker News new | ask | show | jobs
by quadrature 167 days ago
For what it’s worth simdjson now has an on demand api that lets you skip over keys that you don’t need.
1 comments

Which is great, but a JSON parser fundamentally can't avoid looking at every byte. You can't jump to the next key, you have to parse your way to the next key.