Comment on How we store 400M phone numbers with fast lookupparentComments−vidarh11yYou still won't get fast lookups without an index.And if you've first sorted it, you can save space with an index in the form of a trie or limited skip list by eliminating common prefixes.
Comments
You still won't get fast lookups without an index.
And if you've first sorted it, you can save space with an index in the form of a trie or limited skip list by eliminating common prefixes.