LevelDB
Last updated
Last updated
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.
This is the Namespace wrapper call for levelDB Put
method
Example:
This is the Namespace wrapper call for levelDB Get
method
Example: