Commit ad94bc31 authored by Vitaly Arbuzov's avatar Vitaly Arbuzov
Browse files

Merge branch 'unstable' into dict-split-by-slot

parents a08686a5 e55568ed
{ {
"UNBLOCK": { "UNBLOCK": {
"summary": "Unblock a client blocked in a blocking command from a different connection", "summary": "Unblocks a client blocked by a blocking command from a different connection.",
"complexity": "O(log N) where N is the number of client connections", "complexity": "O(log N) where N is the number of client connections",
"group": "connection", "group": "connection",
"since": "5.0.0", "since": "5.0.0",
......
{ {
"UNPAUSE": { "UNPAUSE": {
"summary": "Resume processing of clients that were paused", "summary": "Resumes processing commands from paused clients.",
"complexity": "O(N) Where N is the number of paused clients", "complexity": "O(N) Where N is the number of paused clients",
"group": "connection", "group": "connection",
"since": "6.2.0", "since": "6.2.0",
......
{ {
"CLIENT": { "CLIENT": {
"summary": "A container for client connection commands", "summary": "A container for client connection commands.",
"complexity": "Depends on subcommand.", "complexity": "Depends on subcommand.",
"group": "connection", "group": "connection",
"since": "2.4.0", "since": "2.4.0",
......
{ {
"ADDSLOTS": { "ADDSLOTS": {
"summary": "Assign new hash slots to receiving node", "summary": "Assigns new hash slots to a node.",
"complexity": "O(N) where N is the total number of hash slot arguments", "complexity": "O(N) where N is the total number of hash slot arguments",
"group": "cluster", "group": "cluster",
"since": "3.0.0", "since": "3.0.0",
......
{ {
"ADDSLOTSRANGE": { "ADDSLOTSRANGE": {
"summary": "Assign new hash slots to receiving node", "summary": "Assigns new hash slot ranges to a node.",
"complexity": "O(N) where N is the total number of the slots between the start slot and end slot arguments.", "complexity": "O(N) where N is the total number of the slots between the start slot and end slot arguments.",
"group": "cluster", "group": "cluster",
"since": "7.0.0", "since": "7.0.0",
......
{ {
"BUMPEPOCH": { "BUMPEPOCH": {
"summary": "Advance the cluster config epoch", "summary": "Advances the cluster config epoch.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "cluster", "group": "cluster",
"since": "3.0.0", "since": "3.0.0",
......
{ {
"COUNT-FAILURE-REPORTS": { "COUNT-FAILURE-REPORTS": {
"summary": "Return the number of failure reports active for a given node", "summary": "Returns the number of active failure reports active for a node.",
"complexity": "O(N) where N is the number of failure reports", "complexity": "O(N) where N is the number of failure reports",
"group": "cluster", "group": "cluster",
"since": "3.0.0", "since": "3.0.0",
......
{ {
"COUNTKEYSINSLOT": { "COUNTKEYSINSLOT": {
"summary": "Return the number of local keys in the specified hash slot", "summary": "Returns the number of keys in a hash slot.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "cluster", "group": "cluster",
"since": "3.0.0", "since": "3.0.0",
......
{ {
"DELSLOTS": { "DELSLOTS": {
"summary": "Set hash slots as unbound in receiving node", "summary": "Sets hash slots as unbound for a node.",
"complexity": "O(N) where N is the total number of hash slot arguments", "complexity": "O(N) where N is the total number of hash slot arguments",
"group": "cluster", "group": "cluster",
"since": "3.0.0", "since": "3.0.0",
......
{ {
"DELSLOTSRANGE": { "DELSLOTSRANGE": {
"summary": "Set hash slots as unbound in receiving node", "summary": "Sets hash slot ranges as unbound for a node.",
"complexity": "O(N) where N is the total number of the slots between the start slot and end slot arguments.", "complexity": "O(N) where N is the total number of the slots between the start slot and end slot arguments.",
"group": "cluster", "group": "cluster",
"since": "7.0.0", "since": "7.0.0",
......
{ {
"FLUSHSLOTS": { "FLUSHSLOTS": {
"summary": "Delete a node's own slots information", "summary": "Deletes all slots information from a node.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "cluster", "group": "cluster",
"since": "3.0.0", "since": "3.0.0",
......
{ {
"FORGET": { "FORGET": {
"summary": "Remove a node from the nodes table", "summary": "Removes a node from the nodes table.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "cluster", "group": "cluster",
"since": "3.0.0", "since": "3.0.0",
......
{ {
"GETKEYSINSLOT": { "GETKEYSINSLOT": {
"summary": "Return local key names in the specified hash slot", "summary": "Returns the key names in a hash slot.",
"complexity": "O(N) where N is the number of requested keys", "complexity": "O(N) where N is the number of requested keys",
"group": "cluster", "group": "cluster",
"since": "3.0.0", "since": "3.0.0",
......
{ {
"HELP": { "HELP": {
"summary": "Show helpful text about the different subcommands", "summary": "Returns helpful text about the different subcommands.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "cluster", "group": "cluster",
"since": "5.0.0", "since": "5.0.0",
......
{ {
"INFO": { "INFO": {
"summary": "Provides info about Redis Cluster node state", "summary": "Returns information about the state of a node.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "cluster", "group": "cluster",
"since": "3.0.0", "since": "3.0.0",
......
{ {
"KEYSLOT": { "KEYSLOT": {
"summary": "Returns the hash slot of the specified key", "summary": "Returns the hash slot for a key.",
"complexity": "O(N) where N is the number of bytes in the key", "complexity": "O(N) where N is the number of bytes in the key",
"group": "cluster", "group": "cluster",
"since": "3.0.0", "since": "3.0.0",
......
{ {
"LINKS": { "LINKS": {
"summary": "Returns a list of all TCP links to and from peer nodes in cluster", "summary": "Returns a list of all TCP links to and from peer nodes.",
"complexity": "O(N) where N is the total number of Cluster nodes", "complexity": "O(N) where N is the total number of Cluster nodes",
"group": "cluster", "group": "cluster",
"since": "7.0.0", "since": "7.0.0",
......
{ {
"MEET": { "MEET": {
"summary": "Force a node cluster to handshake with another node", "summary": "Forces a node to handshake with another node.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "cluster", "group": "cluster",
"since": "3.0.0", "since": "3.0.0",
......
{ {
"MYID": { "MYID": {
"summary": "Return the node id", "summary": "Returns the ID of a node.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "cluster", "group": "cluster",
"since": "3.0.0", "since": "3.0.0",
......
{ {
"MYSHARDID": { "MYSHARDID": {
"summary": "Return the node shard id", "summary": "Returns the shard ID of a node.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "cluster", "group": "cluster",
"since": "7.2.0", "since": "7.2.0",
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment