Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
19 changes: 18 additions & 1 deletion content/commands/bitop.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,22 @@ arguments:
name: not
token: NOT
type: pure-token
- display_text: diff
name: diff
token: DIFF
type: pure-token
- display_text: diff1
name: diff1
token: DIFF1
type: pure-token
- display_text: andor
name: andor
token: ANDOR
type: pure-token
- display_text: one
name: one
token: ONE
type: pure-token
name: operation
type: oneof
- display_text: destkey
Expand Down Expand Up @@ -79,7 +95,8 @@ linkTitle: BITOP
railroad_diagram: /images/railroad/bitop.svg
since: 2.6.0
summary: Performs bitwise operations on multiple strings, and stores the result.
syntax_fmt: BITOP <AND | OR | XOR | NOT | DIFF | DIFF1 | ANDOR | ONE> destkey key [key ...]
syntax_fmt: "BITOP <AND | OR | XOR | NOT | DIFF | DIFF1 | ANDOR | ONE> destkey\n \
\ key [key ...]"
title: BITOP
---
{{< note >}}
Expand Down
6 changes: 3 additions & 3 deletions content/commands/cluster-migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ hidden: false
linkTitle: CLUSTER MIGRATION
railroad_diagram: /images/railroad/cluster-migration.svg
since: 8.4.0
summary: Start, monitor, and cancel atomic slot migration tasks.
syntax_fmt: "CLUSTER MIGRATION <IMPORT\_start-slot end-slot\n [start-slot\
\ end-slot ...] | CANCEL\_<ID\_task-id | ALL> |\n STATUS\_<[ID\_task-id] | [ALL]>>"
summary: Start, monitor and cancel slot migration.
syntax_fmt: "CLUSTER MIGRATION <IMPORT\_start-slot end-slot [start-slot end-slot\n\
\ ...] | CANCEL\_<ID\_task-id | ALL> | STATUS\_<[ID\_task-id] | [ALL]>>"
title: CLUSTER MIGRATION
---

Expand Down
31 changes: 21 additions & 10 deletions content/commands/cluster-slot-stats.md
Original file line number Diff line number Diff line change
@@ -1,26 +1,34 @@
---
acl_categories:
- '@slow'
arguments:
- arguments:
- arguments:
- name: start-slot
- display_text: start-slot
name: start-slot
type: integer
- name: end-slot
- display_text: end-slot
name: end-slot
type: integer
name: slotsrange
token: SLOTSRANGE
type: block
- arguments:
- name: metric
- display_text: metric
name: metric
type: string
- name: limit
- display_text: limit
name: limit
optional: true
token: LIMIT
type: integer
- arguments:
- name: asc
- display_text: asc
name: asc
token: ASC
type: pure-token
- name: desc
- display_text: desc
name: desc
token: DESC
type: pure-token
name: order
Expand All @@ -43,8 +51,8 @@ categories:
- kubernetes
- clients
command_flags:
- STALE
- LOADING
- loading
- stale
command_tips:
- NONDETERMINISTIC_OUTPUT
- REQUEST_POLICY:ALL_SHARDS
Expand All @@ -56,6 +64,9 @@ description: Return an array of slot usage statistics for slots assigned to the
function: clusterSlotStatsCommand
group: cluster
hidden: false
hints:
- nondeterministic_output
- request_policy:all_shards
linkTitle: CLUSTER SLOT-STATS
railroad_diagram: /images/railroad/cluster-slot-stats.svg
reply_schema:
Expand Down Expand Up @@ -86,8 +97,8 @@ reply_schema:
since: 8.2.0
summary: Return an array of slot usage statistics for slots assigned to the current
node.
syntax_fmt: "CLUSTER SLOT-STATS <SLOTSRANGE\_start-slot end-slot | ORDERBY\_metric\n [LIMIT\_\
limit] [ASC | DESC]>"
syntax_fmt: "CLUSTER SLOT-STATS <SLOTSRANGE\_start-slot end-slot | ORDERBY\_metric\n\
\ [LIMIT\_limit] [ASC | DESC]>"
title: CLUSTER SLOT-STATS
---

Expand Down
9 changes: 6 additions & 3 deletions content/commands/delex.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,10 @@ categories:
command_flags:
- write
- fast
complexity: O(1) for IFEQ/IFNE, O(N) for IFDEQ/IFDNE where N is the length of the string value.
description: Conditionally removes the specified key based on value or hash digest comparison.
complexity: O(1) for IFEQ/IFNE, O(N) for IFDEQ/IFDNE where N is the length of the
string value.
description: Conditionally removes the specified key based on value or hash digest
comparison.
group: string
hidden: false
key_specs:
Expand All @@ -59,10 +61,11 @@ key_specs:
lastkey: 0
limit: 0
type: range
variable_flags: true
linkTitle: DELEX
railroad_diagram: /images/railroad/delex.svg
since: 8.4.0
summary: Conditionally removes the specified key based on value or hash digest comparison.
summary: Conditionally removes the specified key based on value or digest comparison.
syntax_fmt: "DELEX key [IFEQ\_ifeq-value | IFNE\_ifne-value | IFDEQ\_ifdeq-digest\
\ |\n IFDNE\_ifdne-digest]"
title: DELEX
Expand Down
2 changes: 1 addition & 1 deletion content/commands/digest.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ key_specs:
linkTitle: DIGEST
railroad_diagram: /images/railroad/digest.svg
since: 8.4.0
summary: Returns the hash digest of a string value as a hexadecimal string.
summary: Returns the XXH3 hash of a string value.
syntax_fmt: DIGEST key
title: DIGEST
---
Expand Down
Loading