tags:

views:

125

answers:

1

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

+2  A: 

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.

pmf
I need to store thousands of 10 meg binaries. total size about 100G will it fall over
Arthur Ulfeldt