ReadonlynameThe name of the store (e.g. 'mongodb', 'redis', 'dynamodb')
ReadonlylibraryThe client library being used
Returns the underlying nedb Datastore for anything not wrapped here.
Writes a document keyed by _id = key. Maps onto NeDB's insert, merging
key into the document as its _id.
Reads a document by _id (NeDB findOne({ _id })). Returns null if absent.
Deletes a document by _id (NeDB remove({ _id })). Returns the number removed.
Native insert: adds a document (NeDB assigns an _id if omitted).
Native find: returns every document matching the Mongo-style query.
Applies a list of put/del operations sequentially.
Lists all document _ids (via find({})).
NedbStorewraps anedbDatastoreand exposes both a common KV surface —put/get/delkeyed on_id,batch,list— and NeDB's native document operationsinsert/find.