Fetch a Value from the Store. More...
Functions | |
| static void * | store_gdbm_fetch (StoreHandle *store, const char *key, size_t klen, size_t *vlen) |
| Fetch a Value from the Store - Implements StoreOps::fetch() -. | |
| static void * | store_lmdb_fetch (StoreHandle *store, const char *key, size_t klen, size_t *vlen) |
| Fetch a Value from the Store - Implements StoreOps::fetch() -. | |
| static void * | store_rocksdb_fetch (StoreHandle *store, const char *key, size_t klen, size_t *vlen) |
| Fetch a Value from the Store - Implements StoreOps::fetch() -. | |
| static void * | store_tdb_fetch (StoreHandle *store, const char *key, size_t klen, size_t *vlen) |
| Fetch a Value from the Store - Implements StoreOps::fetch() -. | |
Fetch a Value from the Store.
| [in] | store | Store retrieved via open() |
| [in] | key | Key identifying the record |
| [in] | klen | Length of the Key string |
| [out] | vlen | Length of the Value |
| ptr | Success, Value associated with the Key |
| NULL | Error, or Key not found |
|
static |
Fetch a Value from the Store - Implements StoreOps::fetch() -.
Definition at line 64 of file gdbm.c.
|
static |
Fetch a Value from the Store - Implements StoreOps::fetch() -.
Definition at line 212 of file lmdb.c.
|
static |
Fetch a Value from the Store - Implements StoreOps::fetch() -.
Definition at line 124 of file rocksdb.c.
|
static |
Fetch a Value from the Store - Implements StoreOps::fetch() -.
Definition at line 64 of file tdb.c.