Hey,
nessDB is a very fast key-value,embedded Database Storage Engine (Using log-structured-merge (LSM) trees) with Level-LRU, Bloom-Filter,and supports Redis-Protocol(PING,SET,MSET,GET,MGET,DEL,EXISTS,INFO,SHUTDOWN).<p>This version, there is a big performance improving, using LSM-Tree. All the magic is in the codes, you can go through it here:https://github.com/shuttler/nessDB<p>1.8-rc1 key features:
a) Better performances on Random-Read/Random-Write
b) Log recovery
c) Using LSM-Tree as storage engine
d) Background detached-thread merging
e) Level LRU
f) Support billion data<p>BohuTANG