Arthur Ulfeldt
Arthur Ulfeldt

Reputation: 91617

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.

Upvotes: 4

Views: 360

Answers (1)

pmf
pmf

Reputation: 7759

Berkeley DB Java Edition (with Clojure-wrapper available here) is pretty nice. The basic stuff is relatively straightforward, and should the need arise it supports replication and other high availability features. It seems that the license is more GPL-like than LGPL-like, so I think for closed-source applications (even without modifications to BDB JE itself), you'd need a separate license.

Upvotes: 3

Related Questions