I would like to do a key -> value lookup for data that may not fit into memory (or simply avoid the overhead of having to load it an keep it in memory).
Does Emacs natively support any kind of database that can be used for fast lookups (like a hashtable) without having to first load everything into memory?
As an alternative I could hash the value myself, split it into buckets - then load a JSON file associated with that bucket (for example), but this seems like a weak solution to something that might already exist.