leveldb library

Classes

BatchUpdates
BatchUpdates holds a collection of updates to apply atomically to a DB.
DBIterator
An iterator yields a sequence of key/value pairs from a source. The following class defines the interface. Multiple implementations are provided by this library. In particular, iterators are provided to access the contents of a Table or a DB.
LevelDB
Options
Options to control the behavior of a database (passed to LevelDB.open)
RawData
byte array wrapper

Enums

CompressionType
DB contents are stored in a set of blocks, each of which holds a sequence of key,value pairs. Each block may be compressed before being stored in a file. The following enum describes which compression method (if any) is used to compress a block.