ReadonlynameThe name of the store (e.g. 'mongodb', 'redis', 'dynamodb')
ReadonlylibraryThe client library being used
Returns the underlying @vercel/kv client for anything not wrapped here.
Read a key. Returns whatever the client returns (null if missing).
Write value under key. Strings are stored verbatim; other values are
JSON-serialized. options.ttl maps to Redis EX (seconds),
options.expiration to EXAT (absolute Unix seconds).
Delete a key. Returns the number of keys removed.
List key names, optionally filtered by prefix (matched as <prefix>*).
Optionalprefix: stringAtomically increment the numeric value at key by by (default 1).
VercelKvStorewraps a@vercel/kvclient behind theNoSqlStorelifecycle and an edge-KVget/set/del/list/incrsurface.