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

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

parents a08686a5 e55568ed
{ {
"NODES": { "NODES": {
"summary": "Get Cluster config for the node", "summary": "Returns the cluster configuration for a node.",
"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": "3.0.0", "since": "3.0.0",
......
{ {
"REPLICAS": { "REPLICAS": {
"summary": "List replica nodes of the specified master node", "summary": "Lists the replica nodes of a master node.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "cluster", "group": "cluster",
"since": "5.0.0", "since": "5.0.0",
......
{ {
"REPLICATE": { "REPLICATE": {
"summary": "Reconfigure a node as a replica of the specified master node", "summary": "Configure a node as replica of a master node.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "cluster", "group": "cluster",
"since": "3.0.0", "since": "3.0.0",
......
{ {
"RESET": { "RESET": {
"summary": "Reset a Redis Cluster node", "summary": "Resets a node.",
"complexity": "O(N) where N is the number of known nodes. The command may execute a FLUSHALL as a side effect.", "complexity": "O(N) where N is the number of known nodes. The command may execute a FLUSHALL as a side effect.",
"group": "cluster", "group": "cluster",
"since": "3.0.0", "since": "3.0.0",
......
{ {
"SAVECONFIG": { "SAVECONFIG": {
"summary": "Forces the node to save cluster state on disk", "summary": "Forces a node to save the cluster configuration to disk.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "cluster", "group": "cluster",
"since": "3.0.0", "since": "3.0.0",
......
{ {
"SET-CONFIG-EPOCH": { "SET-CONFIG-EPOCH": {
"summary": "Set the configuration epoch in a new node", "summary": "Sets the configuration epoch for a new node.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "cluster", "group": "cluster",
"since": "3.0.0", "since": "3.0.0",
......
{ {
"SETSLOT": { "SETSLOT": {
"summary": "Bind a hash slot to a specific node", "summary": "Binds a hash slot to a node.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "cluster", "group": "cluster",
"since": "3.0.0", "since": "3.0.0",
......
{ {
"SHARDS": { "SHARDS": {
"summary": "Get array of cluster slots to node mappings", "summary": "Returns the mapping of cluster slots to shards.",
"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",
......
{ {
"SLAVES": { "SLAVES": {
"summary": "List replica nodes of the specified master node", "summary": "Lists the replica nodes of a master node.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "cluster", "group": "cluster",
"since": "3.0.0", "since": "3.0.0",
......
{ {
"SLOTS": { "SLOTS": {
"summary": "Get array of Cluster slot to node mappings", "summary": "Returns the mapping of cluster slots to 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": "3.0.0", "since": "3.0.0",
......
{ {
"CLUSTER": { "CLUSTER": {
"summary": "A container for cluster commands", "summary": "A container for Redis Cluster commands.",
"complexity": "Depends on subcommand.", "complexity": "Depends on subcommand.",
"group": "cluster", "group": "cluster",
"since": "3.0.0", "since": "3.0.0",
......
{ {
"COUNT": { "COUNT": {
"summary": "Get total number of Redis commands", "summary": "Returns a count of commands.",
"complexity": "O(1)", "complexity": "O(1)",
"group": "server", "group": "server",
"since": "2.8.13", "since": "2.8.13",
......
{ {
"DOCS": { "DOCS": {
"summary": "Get array of specific Redis command documentation", "summary": "Returns documentary information about a command.",
"complexity": "O(N) where N is the number of commands to look up", "complexity": "O(N) where N is the number of commands to look up",
"group": "server", "group": "server",
"since": "7.0.0", "since": "7.0.0",
......
{ {
"GETKEYS": { "GETKEYS": {
"summary": "Extract keys given a full Redis command", "summary": "Extracts the key names from an arbitrary command.",
"complexity": "O(N) where N is the number of arguments to the command", "complexity": "O(N) where N is the number of arguments to the command",
"group": "server", "group": "server",
"since": "2.8.13", "since": "2.8.13",
......
{ {
"GETKEYSANDFLAGS": { "GETKEYSANDFLAGS": {
"summary": "Extract keys and access flags given a full Redis command", "summary": "Extracts the key names and access flags for an arbitrary command.",
"complexity": "O(N) where N is the number of arguments to the command", "complexity": "O(N) where N is the number of arguments to the command",
"group": "server", "group": "server",
"since": "7.0.0", "since": "7.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": "server", "group": "server",
"since": "5.0.0", "since": "5.0.0",
......
{ {
"INFO": { "INFO": {
"summary": "Get array of specific Redis command details, or all when no argument is given.", "summary": "Returns information about one, multiple or all commands.",
"complexity": "O(N) where N is the number of commands to look up", "complexity": "O(N) where N is the number of commands to look up",
"group": "server", "group": "server",
"since": "2.8.13", "since": "2.8.13",
......
{ {
"LIST": { "LIST": {
"summary": "Get an array of Redis command names", "summary": "Returns a list of command names.",
"complexity": "O(N) where N is the total number of Redis commands", "complexity": "O(N) where N is the total number of Redis commands",
"group": "server", "group": "server",
"since": "7.0.0", "since": "7.0.0",
......
{ {
"COMMAND": { "COMMAND": {
"summary": "Get array of Redis command details", "summary": "Returns detailed information about all commands.",
"complexity": "O(N) where N is the total number of Redis commands", "complexity": "O(N) where N is the total number of Redis commands",
"group": "server", "group": "server",
"since": "2.8.13", "since": "2.8.13",
......
{ {
"GET": { "GET": {
"summary": "Get the values of configuration parameters", "summary": "Returns the effective values of configuration parameters.",
"complexity": "O(N) when N is the number of configuration parameters provided", "complexity": "O(N) when N is the number of configuration parameters provided",
"group": "server", "group": "server",
"since": "2.0.0", "since": "2.0.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