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