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 expiration_ttl (seconds),
options.expiration to expiration (absolute Unix seconds).
Delete a key.
List key names, optionally filtered by prefix.
Optionalprefix: stringIncrement the numeric value at key by by (default 1). Workers KV
has no atomic increment, so this is a non-atomic read-modify-write.
CloudflareKvStorewraps the Cloudflare Workers KV REST API behind theNoSqlStorelifecycle and an edge-KVget/set/del/list/incrsurface.