Y
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
yoklov
2674 days ago
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.
link
JSON Objects tend to have few enough values that it doesn't matter a ton anyway.