Hacker News new | ask | show | jobs
by gnulinux 900 days ago
> The technical primitive data structure here is a hashmap where the keys are sorted.

Why not a tree based map instead?

1 comments

HashMap and sorted keys sounds like a contradiction. I think they just use "HashMap" as a generic term for "Map" and it's actually a tree based map.
It is an LSMT, but I cannot imagine why they would need one here.