Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

COMMAND DOCS

Syntax
COMMAND DOCS [command-name [command-name ...]]
Available since:
Redis Open Source 7.0.0
Time complexity:
O(N) where N is the number of commands to look up
ACL categories:
@slow, @connection,

Return documentary information about commands.

By default, the reply includes all of the server's commands. You can use the optional command-name argument to specify the names of one or more commands.

The reply includes a map for each returned command. The following keys may be included in the mapped reply:

Examples

COMMAND DOCS SET

RESP2 Reply

Array reply: a map, as a flattened array, where each key is a command name, and each value is the documentary information.

RESP3 Reply

Map reply: a map where each key is a command name, and each value is the documentary information.
RATE THIS PAGE
Back to top ↑