redis and cluster | Mar 13, 2016
CLUSTER INFO
provides INFO
style information about Redis Cluster
vital parameters. The following is a sample output, followed by the
description of each field reported.
redis and cluster | Mar 13, 2016
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.
redis and cluster | Mar 13, 2016
The command is used in order to remove a node, specified via its node ID, from the set of known nodes of the Redis Cluster node receiving the command. In other words the specified node is removed from the nodes table of the node receiving the command.
More »redis and cluster | Mar 13, 2016
This command, that can only be send to a Redis Cluster slave node, forces the slave to start a manual failover of its master instance.
More »redis and cluster | Mar 13, 2016
In Redis Cluster, each node keeps track of which master is serving a particular hash slot.
More »redis and cluster | Mar 13, 2016
Returns the number of keys in the specified Redis Cluster hash slot. The command only queries the local data set, so contacting a node that is not serving the specified hash slot will always result in a count of zero being returned.
More »