Skip to main content

Kv

Kv Runtime

The KvRuntime enables interaction with a Redis database by setting, retrieving, deleting, and managing keys and values.

Loading...
OperationDescriptionMethod
getRetrieve the value associated with a specific key.kv.get()
setAssign a value to a specific key.kv.set()
deleteRemove a key and its associated value from Redis.kv.delete()
keysList all keys currently stored in Redis.kv.keys()
valuesList all values currently stored in Redis.kv.values()