COMMANDS
The following commands are available to for RESP and Postgres clients.
- APPEND Concatenate value at the end of the current string
- AUTH Authorize the current connection
- DECR Decrement a 64-bit signed integer by one
- DECRBY Decrement a 64-bit signed integer by delta
- DEL Delete one or more entries from cache
- ECHO Send the server a message, which is sent back
- EXISTS Checks if one or more entries exist in the cache
- EXPIRE Set or reset a time to live, as seconds, on an entry
- FLUSH Clears the cache
- GET Get an entry from cache
- INCR Increment a 64-bit signed integer by one
- KEYS Get keys matching a pattern
- LOAD Load a copy of the cache
- MGET Get multiple entries from cache
- MGETS Get multiple entries from cache. Includes flag and CAS
- PING Ping the server with an optional message
- PREPEND Concatenate value at the start of the current string
- PTTL Get the remaining milliseconds for time to live for an entry
- PURGE Release unused memory back to the operating system
- QUIT Quit the current client connection
- SAVE Save a copy of the cache
- SET Insert or replace an entry into cache
- SWEEP Frees all expired entries from memory
- TTL Get the remaining time to live for an entry
- UDECR Decrement a 64-bit unsigned integer by delta
- UDECRBY Decrement a 64-bit unsigned integer by delta
- UINCR Increment a 64-bit unsigned integer by delta
- UINCRBY Increment a 64-bit unsigned integer by delta