Write a Value to the Store. More...
Functions | |
| static int | store_gdbm_store (StoreHandle *store, const char *key, size_t klen, void *value, size_t vlen) |
| Write a Value to the Store - Implements StoreOps::store() -. | |
| static int | store_lmdb_store (StoreHandle *store, const char *key, size_t klen, void *value, size_t vlen) |
| Write a Value to the Store - Implements StoreOps::store() -. | |
| static int | store_rocksdb_store (StoreHandle *store, const char *key, size_t klen, void *value, size_t vlen) |
| Write a Value to the Store - Implements StoreOps::store() -. | |
| static int | store_tdb_store (StoreHandle *store, const char *key, size_t klen, void *value, size_t vlen) |
| Write a Value to the Store - Implements StoreOps::store() -. | |
Write a Value to the Store.
| [in] | store | Store retrieved via open() |
| [in] | key | Key identifying the record |
| [in] | klen | Length of the Key string |
| [in] | value | Value to save |
| [in] | vlen | Length of the Value |
| 0 | Success |
| num | Error, a backend-specific error code |
|
static |
Write a Value to the Store - Implements StoreOps::store() -.
Definition at line 94 of file gdbm.c.
|
static |
Write a Value to the Store - Implements StoreOps::store() -.
Definition at line 262 of file lmdb.c.
|
static |
Write a Value to the Store - Implements StoreOps::store() -.
Definition at line 154 of file rocksdb.c.
|
static |
Write a Value to the Store - Implements StoreOps::store() -.
Definition at line 93 of file tdb.c.