|
static int | mdb_get_r_txn (struct StoreLmdbCtx *ctx) |
| Get an LMDB read transaction. More...
|
|
static int | mdb_get_w_txn (struct StoreLmdbCtx *ctx) |
| Get an LMDB write transaction. More...
|
|
static void * | store_lmdb_open (const char *path) |
| Implements StoreOps::open() -. More...
|
|
static void * | store_lmdb_fetch (void *store, const char *key, size_t klen, size_t *vlen) |
| Implements StoreOps::fetch() -. More...
|
|
static void | store_lmdb_free (void *store, void **ptr) |
| Implements StoreOps::free() -. More...
|
|
static int | store_lmdb_store (void *store, const char *key, size_t klen, void *value, size_t vlen) |
| Implements StoreOps::store() -. More...
|
|
static int | store_lmdb_delete_record (void *store, const char *key, size_t klen) |
| Implements StoreOps::delete_record() -. More...
|
|
static void | store_lmdb_close (void **ptr) |
| Implements StoreOps::close() -. More...
|
|
static const char * | store_lmdb_version (void) |
| Implements StoreOps::version() -. More...
|
|
Lightning Memory-Mapped Database (LMDB) backend for the key/value Store.
- Authors
- Thomas Glanzmann
- Tobias Werth
- Brian Fundakowski Feldman
- Pietro Cerutti
- 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 lmdb.c.