dets

Suitable data storage backend for Erlang application when data doesn't fit memory

I'm researching possible options how to organize data storage for an Erlang application. The data it supposed to use is basically a huge collection of binary blobs indexed by short string ids. Each blob is under 10 Kb but there are many of them. I'd expect that in total they would have size up to 200 Gb so obviously it cannot fit into me...

How big can Erlang DETS be and what to do if its too small?

All I need is a large persistent lookup table in Erlang and dets seems like just the thing though I need a definative answer to: just how big the total size of the binaries in the table can be. how big each entry can be what to do if the answer to the first question is less than 100G ...

Clojure equivalent of Erlang's DETS / Persistent-Maps

I'm looking for the equivalent of Erlangs DETS for a persistent key/value store, except with out DETS 2G table size limit. ...