redis and cluster | Mar 13, 2016
The command returns the number of failure reports for the specified node.
Failure reports are the way Redis Cluster uses in order to promote a
PFAIL
state, that means a node is not reachable, to a FAIL
state,
that means that the majority of masters in the cluster agreed within
a window of time that the node is not reachable.
redis and cluster | Mar 13, 2016
This command is useful in order to modify a node’s view of the cluster configuration. Specifically it assigns a set of hash slots to the node receiving the command. If the command is successful, the node will map the specified hash slots to itself, and will start broadcasting the new configuration.
More »redis and transactions | Mar 12, 2016
Marks the given keys to be watched for conditional execution of a transaction.
More »redis and transactions | Mar 12, 2016
Flushes all the previously watched keys for a transaction.
More »redis and transactions | Mar 12, 2016
Marks the start of a transaction block.
Subsequent commands will be queued for atomic execution using EXEC
.
redis and transactions | Mar 12, 2016
Executes all previously queued commands in a transaction and restores the connection state to normal.
More »