ReadonlynameThe name of the store (e.g. 'mongodb', 'redis', 'dynamodb')
ReadonlylibraryThe client library being used
Returns the underlying unqlite client for anything not wrapped here.
Writes (or overwrites) the value at key (UnQLite store).
Reads the value at key (UnQLite fetch).
Deletes the value at key (UnQLite delete).
Applies a list of put/del operations sequentially.
Lists all keys by iterating records with UnQLite's each cursor.
UnqliteStorewraps anunqliteclient and exposes its embedded KV surface:put/get/del(mapped tostore/fetch/delete),batchfor multi-key writes, andlistfor key iteration.