Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
typo
  • Loading branch information
oranagra committed Feb 8, 2022
commit 8a2996cce0e870ebb37f700bfc450ae6f1e71c77
2 changes: 1 addition & 1 deletion commands/command-getkeys.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Returns @array-reply of keys from a full Redis command.
from a full Redis command.

`COMMAND` provides information on how to find the key names of each command (see `firstkey`, [key specifications](/topics/key-specs#logical-operation-flags), and `movablekeys`),
but in some cases it's not possible to find keys of certain comands and then the entire command must be parsed to discover some / all key names.
but in some cases it's not possible to find keys of certain commands and then the entire command must be parsed to discover some / all key names.
You can use `COMMAND GETKEYS` or `COMMAND GETKEYSANDFLAGS` to discover key names directly from how Redis parses the commands.


Expand Down
2 changes: 1 addition & 1 deletion commands/command-getkeysandflags.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Returns @array-reply of keys from a full Redis command and their usage flags.
`COMMAND GETKEYSANDFLAGS` is a helper command to let you find the keys from a full Redis command together with flags indicating what each key is used for.

`COMMAND` provides information on how to find the key names of each command (see `firstkey`, [key specifications](/topics/key-specs#logical-operation-flags), and `movablekeys`),
but in some cases it's not possible to find keys of certain comands and then the entire command must be parsed to discover some / all key names.
but in some cases it's not possible to find keys of certain commands and then the entire command must be parsed to discover some / all key names.
You can use `COMMAND GETKEYS` or `COMMAND GETKEYSANDFLAGS` to discover key names directly from how Redis parses the commands.

Refer to [key specifications](/topics/key-specs#logical-operation-flags) for information about the meaning of the key flags.
Expand Down