#include <leveldb.h>
|
| CLevelDB (const boost::filesystem::path &path, size_t nCacheSize, bool fMemory=false, bool fWipe=false) |
|
| ~CLevelDB () |
|
template<typename K , typename V > |
bool | Read (const K &key, V &value) throw (leveldb_error) |
|
template<typename K , typename V > |
bool | Write (const K &key, const V &value, bool fSync=false) throw (leveldb_error) |
|
template<typename K > |
bool | Exists (const K &key) throw (leveldb_error) |
|
template<typename K > |
bool | Erase (const K &key, bool fSync=false) throw (leveldb_error) |
|
bool | WriteBatch (CLevelDBBatch &batch, bool fSync=false) throw (leveldb_error) |
|
bool | Flush () |
|
bool | Sync () throw (leveldb_error) |
|
leveldb::Iterator * | NewIterator () |
|
Definition at line 55 of file leveldb.h.
CLevelDB::CLevelDB |
( |
const boost::filesystem::path & |
path, |
|
|
size_t |
nCacheSize, |
|
|
bool |
fMemory = false , |
|
|
bool |
fWipe = false |
|
) |
| |
template<typename K >
bool CLevelDB::Erase |
( |
const K & |
key, |
|
|
bool |
fSync = false |
|
) |
| |
throw | ( | leveldb_error |
| ) | | |
|
inline |
template<typename K , typename V >
bool CLevelDB::Read |
( |
const K & |
key, |
|
|
V & |
value |
|
) |
| |
throw | ( | leveldb_error |
| ) | | |
|
inline |
template<typename K , typename V >
bool CLevelDB::Write |
( |
const K & |
key, |
|
|
const V & |
value, |
|
|
bool |
fSync = false |
|
) |
| |
throw | ( | leveldb_error |
| ) | | |
|
inline |
The documentation for this class was generated from the following files: