Class that provides a layer of abstraction over the base storage, allowing for the encoding and decoding of keys and values. It extends the BaseStore class.
Method to delete multiple keys at once. It works with the encoded keys.
Array of keys to delete
Promise that resolves when the operation is complete
Method to get multiple keys at once. It works with the encoded keys and serialized values.
Array of keys to get
Promise that resolves with an array of values or undefined for each key
Method to set multiple keys at once. It works with the encoded keys and serialized values.
Array of key-value pairs to set
Method to yield keys. It works with the encoded keys.
Optional
Optional prefix to filter keys
AsyncGenerator that yields keys
Generated using TypeDoc
Class that provides a layer of abstraction over the base storage, allowing for the encoding and decoding of keys and values. It extends the BaseStore class.