Expand description
The key value operations that can be performed on the key value store.
Structsยง
- Message
Del - Delete a key.
- Message
Delc - Delete a key if the value of that key is the same as the one provided.
- Message
Delr - Delete a key and return the value.
- Message
Exists - Check if a key exists.
- Message
Get - Get the value of a key.
- Message
Keys - Get all keys within a range with a limit.
- Message
Put - Put a key value pair.
- Message
Putc - Put a key value pair if the value of that key is the same as the one provided.
- Message
Scan - Get all keys and values within a range with a limit.
- Message
Set - Set the value of a key.
- Response
Get - The response to the
Get
operation. - Response
Keys - The response to the
Keys
operation. - Response
Scan - The response to the
Scan
operation.