Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
193 views

Mostly read only use of DETS

So I have been using ETS - works great. However, I use it as a cache of route data - which I load when the module loads, and save when a change is made (it is read far more than written). I was ...
4
votes
1answer
201 views

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.
4
votes
5answers
1k views

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 ...
2
votes
3answers
378 views

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 ...
0
votes
2answers
155 views

Erlang dets to txt

How can i write information which store in dets to txt file? Thank you.