| |||||
Written in C, this database system implements a simplistic NoSQL storage environment for any kind of data.
LevelDB is extremely fast, but has no support for classic relational database features like indexes, SQL syntax or multi-threads.
Here are some key features of "LevelDB":
· Lots of documentation
· Data is sortable by key
· Supports batch operations
· Support for forward and backward iteration
· Automatic data compression
Base operations:
· Put(key,value)
· Get(key)
· Delete(key)
What's New in This Release: [ read full changelog ]
· Removed calls to exit(1).
· Fixed unused-variable warnings from clang.
· Fixed possible overflow error related to num_restart value >= (2^32/4).
· Added leveldbutil to .gitignore.
· Added better log messages when Write is stalled on a compaction.

Via: LevelDB 1.12.0






0 Comment:
Post a Comment