Hacker News new | ask | show | jobs
by hnaccy 2674 days ago
Is there a reason these fast json libraries seem to favor doing linear scan for object representation?
1 comments

Faster to build than a hash map, less code (which is also better for icache), etc.

JSON Objects tend to have few enough values that it doesn't matter a ton anyway.