yet another leveldb for Java, is a simple key-value database, it try to support key-value database operator as simple as possible.
this library is under ACTIVE DEVELOP
- simple api:
put(key, value);
get(key);
delete(key);-
will test
-
it can embed you Java Application easily, no need to install any other software.
- async compaction
- concurrence support
not support yet
not support yet
download the source and copy to you project
current this library's implementation is bitcast like, a simple LSM-TREE( Log-Structured Merge-Tree ).