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

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

parents a08686a5 e55568ed
{
"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",
"group": "cluster",
"since": "3.0.0",
......
{
"REPLICAS": {
"summary": "List replica nodes of the specified master node",
"summary": "Lists the replica nodes of a master node.",
"complexity": "O(1)",
"group": "cluster",
"since": "5.0.0",
......
{
"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)",
"group": "cluster",
"since": "3.0.0",
......
{
"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.",
"group": "cluster",
"since": "3.0.0",
......
{
"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)",
"group": "cluster",
"since": "3.0.0",
......
{
"SET-CONFIG-EPOCH": {
"summary": "Set the configuration epoch in a new node",
"summary": "Sets the configuration epoch for a new node.",
"complexity": "O(1)",
"group": "cluster",
"since": "3.0.0",
......
{
"SETSLOT": {
"summary": "Bind a hash slot to a specific node",
"summary": "Binds a hash slot to a node.",
"complexity": "O(1)",
"group": "cluster",
"since": "3.0.0",
......
{
"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",
"group": "cluster",
"since": "7.0.0",
......
{
"SLAVES": {
"summary": "List replica nodes of the specified master node",
"summary": "Lists the replica nodes of a master node.",
"complexity": "O(1)",
"group": "cluster",
"since": "3.0.0",
......
{
"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",
"group": "cluster",
"since": "3.0.0",
......
{
"CLUSTER": {
"summary": "A container for cluster commands",
"summary": "A container for Redis Cluster commands.",
"complexity": "Depends on subcommand.",
"group": "cluster",
"since": "3.0.0",
......
{
"COUNT": {
"summary": "Get total number of Redis commands",
"summary": "Returns a count of commands.",
"complexity": "O(1)",
"group": "server",
"since": "2.8.13",
......
{
"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",
"group": "server",
"since": "7.0.0",
......
{
"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",
"group": "server",
"since": "2.8.13",
......
{
"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",
"group": "server",
"since": "7.0.0",
......
{
"HELP": {
"summary": "Show helpful text about the different subcommands",
"summary": "Returns helpful text about the different subcommands.",
"complexity": "O(1)",
"group": "server",
"since": "5.0.0",
......
{
"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",
"group": "server",
"since": "2.8.13",
......
{
"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",
"group": "server",
"since": "7.0.0",
......
{
"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",
"group": "server",
"since": "2.8.13",
......
{
"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",
"group": "server",
"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