|
2 | 2 | ## Unsupported cluster commands
|
3 | 3 | > To implement support for a command, see [here](/guides/implement-command/)
|
4 | 4 |
|
5 |
| -#### [ASKING](https://redis.io/commands/asking/) <small>(not implemented)</small> |
6 |
| - |
7 |
| -Signals that a cluster client is following an -ASK redirect. |
8 |
| - |
9 |
| -#### [CLUSTER](https://redis.io/commands/cluster/) <small>(not implemented)</small> |
10 |
| - |
11 |
| -A container for Redis Cluster commands. |
12 |
| - |
13 | 5 | #### [CLUSTER ADDSLOTS](https://redis.io/commands/cluster-addslots/) <small>(not implemented)</small>
|
14 | 6 |
|
15 | 7 | Assigns new hash slots to a node.
|
16 | 8 |
|
17 |
| -#### [CLUSTER ADDSLOTSRANGE](https://redis.io/commands/cluster-addslotsrange/) <small>(not implemented)</small> |
| 9 | +#### [CLUSTER HELP](https://redis.io/commands/cluster-help/) <small>(not implemented)</small> |
18 | 10 |
|
19 |
| -Assigns new hash slot ranges to a node. |
| 11 | +Returns helpful text about the different subcommands. |
20 | 12 |
|
21 |
| -#### [CLUSTER BUMPEPOCH](https://redis.io/commands/cluster-bumpepoch/) <small>(not implemented)</small> |
| 13 | +#### [CLUSTER INFO](https://redis.io/commands/cluster-info/) <small>(not implemented)</small> |
22 | 14 |
|
23 |
| -Advances the cluster config epoch. |
| 15 | +Returns information about the state of a node. |
24 | 16 |
|
25 |
| -#### [CLUSTER COUNT-FAILURE-REPORTS](https://redis.io/commands/cluster-count-failure-reports/) <small>(not implemented)</small> |
| 17 | +#### [CLUSTER KEYSLOT](https://redis.io/commands/cluster-keyslot/) <small>(not implemented)</small> |
26 | 18 |
|
27 |
| -Returns the number of active failure reports active for a node. |
| 19 | +Returns the hash slot for a key. |
28 | 20 |
|
29 |
| -#### [CLUSTER COUNTKEYSINSLOT](https://redis.io/commands/cluster-countkeysinslot/) <small>(not implemented)</small> |
| 21 | +#### [CLUSTER BUMPEPOCH](https://redis.io/commands/cluster-bumpepoch/) <small>(not implemented)</small> |
30 | 22 |
|
31 |
| -Returns the number of keys in a hash slot. |
| 23 | +Advances the cluster config epoch. |
32 | 24 |
|
33 |
| -#### [CLUSTER DELSLOTS](https://redis.io/commands/cluster-delslots/) <small>(not implemented)</small> |
| 25 | +#### [CLUSTER GETKEYSINSLOT](https://redis.io/commands/cluster-getkeysinslot/) <small>(not implemented)</small> |
34 | 26 |
|
35 |
| -Sets hash slots as unbound for a node. |
| 27 | +Returns the key names in a hash slot. |
36 | 28 |
|
37 |
| -#### [CLUSTER DELSLOTSRANGE](https://redis.io/commands/cluster-delslotsrange/) <small>(not implemented)</small> |
| 29 | +#### [ASKING](https://redis.io/commands/asking/) <small>(not implemented)</small> |
38 | 30 |
|
39 |
| -Sets hash slot ranges as unbound for a node. |
| 31 | +Signals that a cluster client is following an -ASK redirect. |
40 | 32 |
|
41 |
| -#### [CLUSTER FAILOVER](https://redis.io/commands/cluster-failover/) <small>(not implemented)</small> |
| 33 | +#### [CLUSTER RESET](https://redis.io/commands/cluster-reset/) <small>(not implemented)</small> |
42 | 34 |
|
43 |
| -Forces a replica to perform a manual failover of its master. |
| 35 | +Resets a node. |
44 | 36 |
|
45 |
| -#### [CLUSTER FLUSHSLOTS](https://redis.io/commands/cluster-flushslots/) <small>(not implemented)</small> |
| 37 | +#### [CLUSTER SAVECONFIG](https://redis.io/commands/cluster-saveconfig/) <small>(not implemented)</small> |
46 | 38 |
|
47 |
| -Deletes all slots information from a node. |
| 39 | +Forces a node to save the cluster configuration to disk. |
48 | 40 |
|
49 |
| -#### [CLUSTER FORGET](https://redis.io/commands/cluster-forget/) <small>(not implemented)</small> |
| 41 | +#### [CLUSTER REPLICATE](https://redis.io/commands/cluster-replicate/) <small>(not implemented)</small> |
50 | 42 |
|
51 |
| -Removes a node from the nodes table. |
| 43 | +Configure a node as replica of a master node. |
52 | 44 |
|
53 |
| -#### [CLUSTER GETKEYSINSLOT](https://redis.io/commands/cluster-getkeysinslot/) <small>(not implemented)</small> |
| 45 | +#### [CLUSTER COUNTKEYSINSLOT](https://redis.io/commands/cluster-countkeysinslot/) <small>(not implemented)</small> |
54 | 46 |
|
55 |
| -Returns the key names in a hash slot. |
| 47 | +Returns the number of keys in a hash slot. |
56 | 48 |
|
57 |
| -#### [CLUSTER HELP](https://redis.io/commands/cluster-help/) <small>(not implemented)</small> |
| 49 | +#### [CLUSTER SETSLOT](https://redis.io/commands/cluster-setslot/) <small>(not implemented)</small> |
58 | 50 |
|
59 |
| -Returns helpful text about the different subcommands. |
| 51 | +Binds a hash slot to a node. |
60 | 52 |
|
61 |
| -#### [CLUSTER INFO](https://redis.io/commands/cluster-info/) <small>(not implemented)</small> |
| 53 | +#### [CLUSTER NODES](https://redis.io/commands/cluster-nodes/) <small>(not implemented)</small> |
62 | 54 |
|
63 |
| -Returns information about the state of a node. |
| 55 | +Returns the cluster configuration for a node. |
64 | 56 |
|
65 |
| -#### [CLUSTER KEYSLOT](https://redis.io/commands/cluster-keyslot/) <small>(not implemented)</small> |
| 57 | +#### [CLUSTER FAILOVER](https://redis.io/commands/cluster-failover/) <small>(not implemented)</small> |
66 | 58 |
|
67 |
| -Returns the hash slot for a key. |
| 59 | +Forces a replica to perform a manual failover of its master. |
68 | 60 |
|
69 | 61 | #### [CLUSTER LINKS](https://redis.io/commands/cluster-links/) <small>(not implemented)</small>
|
70 | 62 |
|
71 | 63 | Returns a list of all TCP links to and from peer nodes.
|
72 | 64 |
|
73 |
| -#### [CLUSTER MEET](https://redis.io/commands/cluster-meet/) <small>(not implemented)</small> |
| 65 | +#### [CLUSTER SET-CONFIG-EPOCH](https://redis.io/commands/cluster-set-config-epoch/) <small>(not implemented)</small> |
74 | 66 |
|
75 |
| -Forces a node to handshake with another node. |
| 67 | +Sets the configuration epoch for a new node. |
76 | 68 |
|
77 |
| -#### [CLUSTER MYID](https://redis.io/commands/cluster-myid/) <small>(not implemented)</small> |
| 69 | +#### [CLUSTER DELSLOTSRANGE](https://redis.io/commands/cluster-delslotsrange/) <small>(not implemented)</small> |
78 | 70 |
|
79 |
| -Returns the ID of a node. |
| 71 | +Sets hash slot ranges as unbound for a node. |
80 | 72 |
|
81 |
| -#### [CLUSTER MYSHARDID](https://redis.io/commands/cluster-myshardid/) <small>(not implemented)</small> |
| 73 | +#### [CLUSTER SLOTS](https://redis.io/commands/cluster-slots/) <small>(not implemented)</small> |
82 | 74 |
|
83 |
| -Returns the shard ID of a node. |
| 75 | +Returns the mapping of cluster slots to nodes. |
84 | 76 |
|
85 |
| -#### [CLUSTER NODES](https://redis.io/commands/cluster-nodes/) <small>(not implemented)</small> |
| 77 | +#### [CLUSTER COUNT-FAILURE-REPORTS](https://redis.io/commands/cluster-count-failure-reports/) <small>(not implemented)</small> |
86 | 78 |
|
87 |
| -Returns the cluster configuration for a node. |
| 79 | +Returns the number of active failure reports active for a node. |
88 | 80 |
|
89 |
| -#### [CLUSTER REPLICAS](https://redis.io/commands/cluster-replicas/) <small>(not implemented)</small> |
| 81 | +#### [CLUSTER SHARDS](https://redis.io/commands/cluster-shards/) <small>(not implemented)</small> |
90 | 82 |
|
91 |
| -Lists the replica nodes of a master node. |
| 83 | +Returns the mapping of cluster slots to shards. |
92 | 84 |
|
93 |
| -#### [CLUSTER REPLICATE](https://redis.io/commands/cluster-replicate/) <small>(not implemented)</small> |
| 85 | +#### [CLUSTER DELSLOTS](https://redis.io/commands/cluster-delslots/) <small>(not implemented)</small> |
94 | 86 |
|
95 |
| -Configure a node as replica of a master node. |
| 87 | +Sets hash slots as unbound for a node. |
96 | 88 |
|
97 |
| -#### [CLUSTER RESET](https://redis.io/commands/cluster-reset/) <small>(not implemented)</small> |
| 89 | +#### [CLUSTER FLUSHSLOTS](https://redis.io/commands/cluster-flushslots/) <small>(not implemented)</small> |
98 | 90 |
|
99 |
| -Resets a node. |
| 91 | +Deletes all slots information from a node. |
100 | 92 |
|
101 |
| -#### [CLUSTER SAVECONFIG](https://redis.io/commands/cluster-saveconfig/) <small>(not implemented)</small> |
| 93 | +#### [CLUSTER MYSHARDID](https://redis.io/commands/cluster-myshardid/) <small>(not implemented)</small> |
102 | 94 |
|
103 |
| -Forces a node to save the cluster configuration to disk. |
| 95 | +Returns the shard ID of a node. |
104 | 96 |
|
105 |
| -#### [CLUSTER SET-CONFIG-EPOCH](https://redis.io/commands/cluster-set-config-epoch/) <small>(not implemented)</small> |
| 97 | +#### [READONLY](https://redis.io/commands/readonly/) <small>(not implemented)</small> |
106 | 98 |
|
107 |
| -Sets the configuration epoch for a new node. |
| 99 | +Enables read-only queries for a connection to a Redis Cluster replica node. |
108 | 100 |
|
109 |
| -#### [CLUSTER SETSLOT](https://redis.io/commands/cluster-setslot/) <small>(not implemented)</small> |
| 101 | +#### [CLUSTER REPLICAS](https://redis.io/commands/cluster-replicas/) <small>(not implemented)</small> |
110 | 102 |
|
111 |
| -Binds a hash slot to a node. |
| 103 | +Lists the replica nodes of a master node. |
112 | 104 |
|
113 |
| -#### [CLUSTER SHARDS](https://redis.io/commands/cluster-shards/) <small>(not implemented)</small> |
| 105 | +#### [READWRITE](https://redis.io/commands/readwrite/) <small>(not implemented)</small> |
114 | 106 |
|
115 |
| -Returns the mapping of cluster slots to shards. |
| 107 | +Enables read-write queries for a connection to a Reids Cluster replica node. |
| 108 | + |
| 109 | +#### [CLUSTER ADDSLOTSRANGE](https://redis.io/commands/cluster-addslotsrange/) <small>(not implemented)</small> |
| 110 | + |
| 111 | +Assigns new hash slot ranges to a node. |
116 | 112 |
|
117 | 113 | #### [CLUSTER SLAVES](https://redis.io/commands/cluster-slaves/) <small>(not implemented)</small>
|
118 | 114 |
|
119 | 115 | Lists the replica nodes of a master node.
|
120 | 116 |
|
121 |
| -#### [CLUSTER SLOTS](https://redis.io/commands/cluster-slots/) <small>(not implemented)</small> |
| 117 | +#### [CLUSTER FORGET](https://redis.io/commands/cluster-forget/) <small>(not implemented)</small> |
122 | 118 |
|
123 |
| -Returns the mapping of cluster slots to nodes. |
| 119 | +Removes a node from the nodes table. |
124 | 120 |
|
125 |
| -#### [READONLY](https://redis.io/commands/readonly/) <small>(not implemented)</small> |
| 121 | +#### [CLUSTER MEET](https://redis.io/commands/cluster-meet/) <small>(not implemented)</small> |
126 | 122 |
|
127 |
| -Enables read-only queries for a connection to a Redis Cluster replica node. |
| 123 | +Forces a node to handshake with another node. |
128 | 124 |
|
129 |
| -#### [READWRITE](https://redis.io/commands/readwrite/) <small>(not implemented)</small> |
| 125 | +#### [CLUSTER](https://redis.io/commands/cluster/) <small>(not implemented)</small> |
130 | 126 |
|
131 |
| -Enables read-write queries for a connection to a Reids Cluster replica node. |
| 127 | +A container for Redis Cluster commands. |
| 128 | + |
| 129 | +#### [CLUSTER MYID](https://redis.io/commands/cluster-myid/) <small>(not implemented)</small> |
| 130 | + |
| 131 | +Returns the ID of a node. |
132 | 132 |
|
133 | 133 |
|
0 commit comments