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

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

parents a08686a5 e55568ed
{
"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",
"group": "connection",
"since": "5.0.0",
......
{
"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",
"group": "connection",
"since": "6.2.0",
......
{
"CLIENT": {
"summary": "A container for client connection commands",
"summary": "A container for client connection commands.",
"complexity": "Depends on subcommand.",
"group": "connection",
"since": "2.4.0",
......
{
"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",
"group": "cluster",
"since": "3.0.0",
......
{
"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.",
"group": "cluster",
"since": "7.0.0",
......
{
"BUMPEPOCH": {
"summary": "Advance the cluster config epoch",
"summary": "Advances the cluster config epoch.",
"complexity": "O(1)",
"group": "cluster",
"since": "3.0.0",
......
{
"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",
"group": "cluster",
"since": "3.0.0",
......
{
"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)",
"group": "cluster",
"since": "3.0.0",
......
{
"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",
"group": "cluster",
"since": "3.0.0",
......
{
"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.",
"group": "cluster",
"since": "7.0.0",
......
{
"FLUSHSLOTS": {
"summary": "Delete a node's own slots information",
"summary": "Deletes all slots information from a node.",
"complexity": "O(1)",
"group": "cluster",
"since": "3.0.0",
......
{
"FORGET": {
"summary": "Remove a node from the nodes table",
"summary": "Removes a node from the nodes table.",
"complexity": "O(1)",
"group": "cluster",
"since": "3.0.0",
......
{
"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",
"group": "cluster",
"since": "3.0.0",
......
{
"HELP": {
"summary": "Show helpful text about the different subcommands",
"summary": "Returns helpful text about the different subcommands.",
"complexity": "O(1)",
"group": "cluster",
"since": "5.0.0",
......
{
"INFO": {
"summary": "Provides info about Redis Cluster node state",
"summary": "Returns information about the state of a node.",
"complexity": "O(1)",
"group": "cluster",
"since": "3.0.0",
......
{
"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",
"group": "cluster",
"since": "3.0.0",
......
{
"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",
"group": "cluster",
"since": "7.0.0",
......
{
"MEET": {
"summary": "Force a node cluster to handshake with another node",
"summary": "Forces a node to handshake with another node.",
"complexity": "O(1)",
"group": "cluster",
"since": "3.0.0",
......
{
"MYID": {
"summary": "Return the node id",
"summary": "Returns the ID of a node.",
"complexity": "O(1)",
"group": "cluster",
"since": "3.0.0",
......
{
"MYSHARDID": {
"summary": "Return the node shard id",
"summary": "Returns the shard ID of a node.",
"complexity": "O(1)",
"group": "cluster",
"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