Kv
Kv Runtime
The KvRuntime enables interaction with a Redis database by setting, retrieving, deleting, and managing keys and values.
Loading...
Operation | Description | Method |
---|---|---|
get | Retrieve the value associated with a specific key. | kv.get() |
set | Assign a value to a specific key. | kv.set() |
delete | Remove a key and its associated value from Redis. | kv.delete() |
keys | List all keys currently stored in Redis. | kv.keys() |
values | List all values currently stored in Redis. | kv.values() |