ReadonlynameThe name of the store (e.g. 'mongodb', 'redis', 'dynamodb')
ReadonlylibraryThe client library being used
Returns the underlying lmdb database for anything not wrapped here.
Writes (or overwrites) the value at key.
Reads the value at key (LMDB reads are synchronous; the result is returned directly).
Deletes the value at key (LMDB remove).
Applies a list of put/del operations. LMDB coalesces concurrent writes into one transaction.
Lists keys in order via getRange. With prefix, restricts to keys
>= prefix and < prefix + '\xff' (a standard prefix-scan range).
Optionalprefix: string
LmdbStorewraps anlmdbdatabase and exposes its embedded KV surface:put/get/delfor single keys,batchfor multi-key writes, andlistfor ordered key range scans (optionally by prefix).