Duva - Distributed Cache Server
Commands
Below is a list of all supported commands in Duva. Click on a command to learn more about its usage and examples.
- DECR - Decrease value for the key when it is parsable to integer
- DECRBY - The DECRBY command reduces the value stored at the specified key by the specified decrement
- DEL - Delete keys
- ECHO - Returns message.
- EXISTS - Check if given keys exist
- GET - Retrieve the value associated with a key.
- INCR - Increase value for the key when it is parsable to integer
- INCRBY - Increments the integer value stored at key by increment.
- KEYS - Retrieve keys matching a specific pattern.
- PING - Returns PONG if no argument is provided
- REPLICAOF - Change the replication settings of a node on the fly.
- SAVE - Dump data to a designated file path.
- SET - Store a key-value pair with an optional expiration time.
- TTL - Returns the remaining time to live of a key that has a timeout.
💡 Pro Tip: Duva’s CLI supports autocompletion! For example, typing SET
suggests key value PX milliseconds
to help you work faster.