ReadonlynameThe name of the store (e.g. 'mongodb', 'redis', 'dynamodb')
ReadonlylibraryThe client library being used
Returns the underlying (internal or injected) HTTP client.
Read a key. Returns null on a 404 (missing key).
Write value under key. Strings are stored verbatim; other values are
JSON-serialized. options.ttl maps to expireIn (ms), options.expiration
to expireAt (absolute Unix ms).
Delete a key.
List key names, optionally filtered by prefix.
Optionalprefix: stringIncrement the numeric value at key by by (default 1). Implemented
as a non-atomic read-modify-write over get/set.
DenoKvStorewraps a KV Connect HTTP gateway behind theNoSqlStorelifecycle and an edge-KVget/set/del/list/incrsurface.