|
static void | bdb_sdata_free (struct BdbStoreData **ptr) |
| Free Bdb Store Data.
|
|
static struct BdbStoreData * | bdb_sdata_new (void) |
| Create new Bdb Store Data.
|
|
static void | dbt_init (DBT *dbt, void *data, size_t len) |
| Initialise a BDB thing.
|
|
static void | dbt_empty_init (DBT *dbt) |
| Initialise an empty BDB thing.
|
|
static StoreHandle * | store_bdb_open (const char *path, bool create) |
| Open a connection to a Store - Implements StoreOps::open() -.
|
|
static void * | store_bdb_fetch (StoreHandle *store, const char *key, size_t klen, size_t *vlen) |
| Fetch a Value from the Store - Implements StoreOps::fetch() -.
|
|
static void | store_bdb_free (StoreHandle *store, void **ptr) |
| Free a Value returned by fetch() - Implements StoreOps::free() -.
|
|
static int | store_bdb_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_bdb_delete_record (StoreHandle *store, const char *key, size_t klen) |
| Delete a record from the Store - Implements StoreOps::delete_record() -.
|
|
static void | store_bdb_close (StoreHandle **ptr) |
| Close a Store connection - Implements StoreOps::close() -.
|
|
static const char * | store_bdb_version (void) |
| Get a Store version string - Implements StoreOps::version() -.
|
|
Berkeley DB backend for the key/value Store.
- Authors
- Pietro Cerutti
- Richard Russon
- Copyright
- This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 2 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Definition in file bdb.c.