📄️ KV_SET
Stores key-values. If the key already exists, the value is overwritten.
📄️ KV_ADD
Stores key-values if the key does not already exist.
📄️ KV_GET
Get one or multiple keys.
📄️ KV_CONTAINS
Check if a key exists.
📄️ KV_RMV
Removes one or multiple keys. If you want to remove all keys, use KV_CLEAR.
📄️ KV_CLEAR
Removes all keys from the session. If you want to remove keys individually, use KV_RMV.
📄️ KV_CLEAR_SET
Removes all keys and set new keys in a single command.
📄️ KV_COUNT
Returns the number of keys present:
📄️ KV_KEYS
Returns all the key names (values not included).
📄️ KV_SAVE
This command is only available when persistence is enabled.
📄️ KV_LOAD
Loads data from the filesystem at runtime.
📄️ KV_FIND
Searches the values and returns keys, data or paths.