From dd874ab02db04853d4b5952712ab34693f9a93de Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Wed, 4 Jan 2023 08:19:36 +0100 Subject: Merging upstream version 1.13.0. Signed-off-by: Daniel Baumann --- iredis/data/commands/cluster-getkeysinslot.md | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'iredis/data/commands/cluster-getkeysinslot.md') diff --git a/iredis/data/commands/cluster-getkeysinslot.md b/iredis/data/commands/cluster-getkeysinslot.md index 9faa62d..120bf44 100644 --- a/iredis/data/commands/cluster-getkeysinslot.md +++ b/iredis/data/commands/cluster-getkeysinslot.md @@ -1,20 +1,20 @@ The command returns an array of keys names stored in the contacted node and -hashing to the specified hash slot. The maximum number of keys to return is -specified via the `count` argument, so that it is possible for the user of this -API to batch-processing keys. +hashing to the specified hash slot. The maximum number of keys to return +is specified via the `count` argument, so that it is possible for the user +of this API to batch-processing keys. The main usage of this command is during rehashing of cluster slots from one node to another. The way the rehashing is performed is exposed in the Redis -Cluster specification, or in a more simple to digest form, as an appendix of the -`CLUSTER SETSLOT` command documentation. +Cluster specification, or in a more simple to digest form, as an appendix +of the `CLUSTER SETSLOT` command documentation. ``` > CLUSTER GETKEYSINSLOT 7000 3 -"47344|273766|70329104160040|key_39015" -"47344|273766|70329104160040|key_89793" -"47344|273766|70329104160040|key_92937" +1) "key_39015" +2) "key_89793" +3) "key_92937" ``` @return -@array-reply: From 0 to _count_ key names in a Redis array reply. +@array-reply: From 0 to *count* key names in a Redis array reply. -- cgit v1.2.3