COMMAND GETKEYS
COMMAND GETKEYS command [arg [arg ...]]
- Available since:
- Redis Open Source 2.8.13
- Time complexity:
- O(N) where N is the number of arguments to the command
- ACL categories:
-
@slow,@connection, - Compatibility:
- Redis Software and Redis Cloud compatibility
COMMAND GETKEYS is a helper command to let you find the keys
from the provided Redis command.
COMMAND describes how Redis identifies key names for each command, including firstkey, key specifications, and movablekeys. For some commands, Redis can identify the keys only by parsing the full command. Use COMMAND GETKEYS or COMMAND GETKEYSANDFLAGS to get the key names directly from the Redis command parser.
Required arguments
command
The name of the command to analyze.
Optional arguments
arg [arg ...]
The arguments that would be passed to the command.
Examples
Redis Software and Redis Cloud compatibility
| Redis Software |
Redis Cloud |
Notes |
|---|---|---|
| ✅ Standard |
✅ Standard |
Return information
Array reply: list of keys from the given command.