lmdb
The lmdb module provides an interface to the Lightning Memory-Mapped Database Manager (LMDB).
This is an abstraction over lmdb::ffi, serving as a "Hare-style" wrapper around the raw FFI bindings.
Submodules
Index
Types
type cursor = ffi::cursor;
type dbi = struct {
txn: *ffi::txn,
dbi: ffi::dbi,
};
type env = ffi::env;
type txn = ffi::txn;
type val = ffi::val;
Errors
type error = !int;
Functions
fn dbi_open(txn: *txn, name: nullable *str, flags: uint) (dbi | error);
fn env_close(env: *env) void;
fn env_create() (*env | error);
fn env_open(env: *env, path: str, flag: uint, mode: u32) (void | error);
fn get(dbi: dbi, key: *val) (val | error);
fn put(dbi: dbi, key: *val, data: *val, flags: uint) (void | error);
fn strerror(err: error) str;
fn txn_abort(txn: *txn) (void | error);
fn txn_begin(env: *env, flags: uint, parent: nullable *txn = null) (*txn | error);
fn txn_commit(txn: *txn) (void | error);
fn u8s_val(s: []u8) val;
fn val_u8s(s: *val) []u8;
Types
type cursor
type cursor = ffi::cursor;
Opaque structure for navigating through a database.
type dbi
type dbi = struct {
txn: *ffi::txn,
dbi: ffi::dbi,
};
An individual LMDB database, i.e. one key-value store.
They are only valid for the lifetime of their parent transaction.
type env
type env = ffi::env;
Opaque structure for a database environment.
A DB environment supports multiple databases, all residing in the same shared-memory map.
type txn
type txn = ffi::txn;
Opaque structure for a transaction handle.
type val
type val = ffi::val;
Generic structure used for passing keys and data in and out of the database.
Errors
type error
type error = !int;
Any error returned by LMDB.
Functions
fn dbi_open
fn dbi_open(txn: *txn, name: nullable *str, flags: uint) (dbi | error);
Opens a database from a transaction.
fn env_close
fn env_close(env: *env) void;
Closes an env.
fn env_create
fn env_create() (*env | error);
Creates an env. The caller must free it with env_close.
fn env_open
fn env_open(env: *env, path: str, flag: uint, mode: u32) (void | error);
Associates an env with a on-disk environment.
fn get
fn get(dbi: dbi, key: *val) (val | error);
Get a value from the database. The returned value is only valid for the lifetime of the transaction associated with the dbi.
fn put
fn put(dbi: dbi, key: *val, data: *val, flags: uint) (void | error);
Put a value into the database.
fn strerror
fn strerror(err: error) str;
Create a human-readable error message from an error.
fn txn_abort
fn txn_abort(txn: *txn) (void | error);
Abort a transaction, discaring anything it does.
fn txn_begin
fn txn_begin(env: *env, flags: uint, parent: nullable *txn = null) (*txn | error);
Initiate a transaction.
fn txn_commit
fn txn_commit(txn: *txn) (void | error);
Commiting a transaction, writing anything it does.
fn u8s_val
fn u8s_val(s: []u8) val;
Convert a []u8 to a val.
fn val_u8s
fn val_u8s(s: *val) []u8;
Convert a val to a []u8.