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

Arthur Ulfeldt
- 90,827
- 27
- 201
- 284
-
mnesia could be if no clojure option exists. Pulling in erlang and mnesia to the build is OK just more work. – Arthur Ulfeldt Nov 21 '09 at 03:10
-
there have been a lot of good dets competitors for clojure produced since this question was asked. – Arthur Ulfeldt Oct 31 '11 at 23:53
1 Answers
3
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
- 7,619
- 4
- 47
- 77
-
I need to store thousands of 10 meg binaries. total size about 100G will it fall over – Arthur Ulfeldt Nov 22 '09 at 00:53