J
Jim Janney
I need to maintain a data base of small text snippets keyed by
arbitrary strings, without the overhead of a full SQL relational
database. We will have several people putting data into it so it
needs to support concurrent access over a network.
JDBM catches my eye (http://jdbm.sourceforge.net/) but I can't find
any place that says whether it supports concurrent access or not.
Berkeley DB would be perfect but would need a license from Oracle
since this is a commercial product. Gdbm apparently does not support
concurrent access. TDB (http://sourceforge.net/projects/tdb/) looks
good but would require a JNI interface and probably some work to get
it to compile under Windows.
Any recommendations? I can do JNI if neccessary but would be just as
happy not to need to. I need something I can get going quickly --
management wants it yesterday, as usual...
arbitrary strings, without the overhead of a full SQL relational
database. We will have several people putting data into it so it
needs to support concurrent access over a network.
JDBM catches my eye (http://jdbm.sourceforge.net/) but I can't find
any place that says whether it supports concurrent access or not.
Berkeley DB would be perfect but would need a license from Oracle
since this is a commercial product. Gdbm apparently does not support
concurrent access. TDB (http://sourceforge.net/projects/tdb/) looks
good but would require a JNI interface and probably some work to get
it to compile under Windows.
Any recommendations? I can do JNI if neccessary but would be just as
happy not to need to. I need something I can get going quickly --
management wants it yesterday, as usual...