LevelDB
LevelDB is a key-value storage library that provides an ordered mapping from string keys to string values. It provides Put
, Delete
, and Get
methods to modify/query the database.
The namespaceWrapper
class provides some methods that utilize levelDB's Put(key,value) and
Get(key)
basic operations for storing and retrieving data respectively.
storeSet
This is the Namespace wrapper call for levelDB Put
method
Example:
storeGet
This is the Namespace wrapper call for levelDB Get
method
Example:
Last updated