leveldb

Key-value storage library with ordered mapping for fast data access

brewmacoslinux
Try with needOr install directly
Source

About

Key-value storage library with ordered mapping

Commands

leveldb

Examples

Create and open a LevelDB database for key-value operations$ leveldb --db=/tmp/mydb --create_if_missing=true
Query a value from an existing LevelDB database$ leveldb --db=/tmp/mydb --key=mykey
Use LevelDB as a C++ library in your application code$ #include <leveldb/db.h> leveldb::DB* db; leveldb::Options options; options.create_if_missing = true; leveldb::Status status = leveldb::DB::Open(options, "/tmp/db", &db);