Deletes the entry stored under the specified key. Deletes are soft-deletes. The server will add a new entry marked by a "DEL" operation. Note that if the KV was created with an underlying limit (such as a TTL on keys) it is possible for a key or the soft delete marker to be removed without additional notification on a watch.
Optional
opts: Partial<KvDeleteOptions>Returns the KvEntry stored under the key if it exists or null if not. Note that the entry returned could be marked with a "DEL" or "PURGE" operation which signifies the server stored the value, but it is now deleted.
Optional
opts: { Returns an iterator of the specified key's history (or all keys).
Optional
opts: { Optional
key?: stringReturns an iterator of all the keys optionally matching the specified filter.
Optional
filter: stringDeletes and purges the specified key and any value history.
Optional
opts: Partial<KvDeleteOptions>Sets or updates the value stored under the specified key.
Optional
opts: Partial<KvPutOptions>Updates the existing entry provided that the previous sequence for the Kv is at the specified version. This ensures that the KV has not been modified prior to the update.
Returns an iterator that will yield KvEntry updates as they happen.
Optional
opts: KvWatchOptionsGenerated using TypeDoc
Deprecated