redis and cluster | Mar 13, 2016
Forces a node to save the nodes.conf
configuration on disk. Before to return
the command calls fsync(2)
in order to make sure the configuration is
flushed on the computer disk.
redis and cluster | Mar 13, 2016
Reset a Redis Cluster node, in a more or less drastic way depending on the
reset type, that can be hard or soft. Note that this command
does not work for masters if they hold one or more keys, in that case
to completely reset a master node keys must be removed first, e.g. by using FLUSHALL
first,
and then CLUSTER RESET
.
redis and cluster | Mar 13, 2016
The command reconfigures a node as a slave of the specified master. If the node receiving the command is an empty master, as a side effect of the command, the node role is changed from master to slave.
More »redis and cluster | Mar 13, 2016
Each node in a Redis Cluster has its view of the current cluster configuration, given by the set of known nodes, the state of the connection we have with such nodes, their flags, properties and assigned slots, and so forth.
More »redis and cluster | Mar 13, 2016
CLUSTER MEET
is used in order to connect different Redis nodes with cluster
support enabled, into a working cluster.
redis and cluster | Mar 13, 2016
Returns an integer identifying the hash slot the specified key hashes to. This command is mainly useful for debugging and testing, since it exposes via an API the underlying Redis implementation of the hashing algorithm. Example use cases for this command:
More »