slackbuilds/development/leveldb
Heinz Wiesinger 63daf9f79a All: Support $PRINT_PACKAGE_NAME env var
Signed-off-by: Heinz Wiesinger <pprkut@slackbuilds.org>
2021-07-17 21:55:09 +02:00
..
README
leveldb.SlackBuild All: Support $PRINT_PACKAGE_NAME env var 2021-07-17 21:55:09 +02:00
leveldb.info
slack-desc

README

LevelDB stores keys and values in arbitrary byte arrays, and data is
sorted by key.  It supports batching writes, forward and backward
iteration, and compression of the data via Google's Snappy compression
library.

Still, LevelDB is not a SQL database.  Like other NoSQL and Dbm stores,
it does not have a relational data model, it does not support SQL
queries, and it has no support for indexes.  Applications use LevelDB as
a library, as it does not provide a server or command-line interface.

Optional dependency: snappy