redis and cluster | Mar 13, 2016
Disables read queries for a connection to a Redis Cluster slave node.
More »redis and cluster | Mar 13, 2016
Enables read queries for a connection to a Redis Cluster slave node.
More »redis and cluster | Mar 13, 2016
CLUSTER SLOTS
returns details about which cluster slots map to which
Redis instances. The command is suitable to be used by Redis Cluster client
libraries implementations in order to retrieve (or update when a redirection
is received) the map associating cluster hash slots with actual nodes
network coordinates (composed of an IP address and a TCP port), so that when
a command is received, it can be sent to what is likely the right instance
for the keys specified in the command.
redis and cluster | Mar 13, 2016
The command provides a list of slave nodes replicating from the specified
master node. The list is provided in the same format used by CLUSTER NODES
(please refer to its documentation for the specification of the format).
redis and cluster | Mar 13, 2016
CLUSTER SETSLOT
is responsible of changing the state of a hash slot in the receiving node in different ways. It can, depending on the subcommand used:
redis and cluster | Mar 13, 2016
This command sets a specific config epoch in a fresh node. It only works when:
More »