Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
ad94bc31
Commit
ad94bc31
authored
Apr 10, 2023
by
Vitaly Arbuzov
Browse files
Merge branch 'unstable' into dict-split-by-slot
parents
a08686a5
e55568ed
Changes
423
Hide whitespace changes
Inline
Side-by-side
src/commands/client-unblock.json
View file @
ad94bc31
{
"UNBLOCK"
:
{
"summary"
:
"Unblock a client blocked
in
a blocking command from a different connection"
,
"summary"
:
"Unblock
s
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"
,
...
...
src/commands/client-unpause.json
View file @
ad94bc31
{
"UNPAUSE"
:
{
"summary"
:
"Resume processing
of clients that were paused
"
,
"summary"
:
"Resume
s
processing
commands from paused clients.
"
,
"complexity"
:
"O(N) Where N is the number of paused clients"
,
"group"
:
"connection"
,
"since"
:
"6.2.0"
,
...
...
src/commands/client.json
View file @
ad94bc31
{
"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"
,
...
...
src/commands/cluster-addslots.json
View file @
ad94bc31
{
"ADDSLOTS"
:
{
"summary"
:
"Assign new hash slots to
receiving
node"
,
"summary"
:
"Assign
s
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"
,
...
...
src/commands/cluster-addslotsrange.json
View file @
ad94bc31
{
"ADDSLOTSRANGE"
:
{
"summary"
:
"Assign new hash slot
s to receiving
node"
,
"summary"
:
"Assign
s
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"
,
...
...
src/commands/cluster-bumpepoch.json
View file @
ad94bc31
{
"BUMPEPOCH"
:
{
"summary"
:
"Advance the cluster config epoch"
,
"summary"
:
"Advance
s
the cluster config epoch
.
"
,
"complexity"
:
"O(1)"
,
"group"
:
"cluster"
,
"since"
:
"3.0.0"
,
...
...
src/commands/cluster-count-failure-reports.json
View file @
ad94bc31
{
"COUNT-FAILURE-REPORTS"
:
{
"summary"
:
"Return the number of failure reports active for a
given
node"
,
"summary"
:
"Return
s
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"
,
...
...
src/commands/cluster-countkeysinslot.json
View file @
ad94bc31
{
"COUNTKEYSINSLOT"
:
{
"summary"
:
"Return the number of
local
keys in
the specified
hash slot"
,
"summary"
:
"Return
s
the number of keys in
a
hash slot
.
"
,
"complexity"
:
"O(1)"
,
"group"
:
"cluster"
,
"since"
:
"3.0.0"
,
...
...
src/commands/cluster-delslots.json
View file @
ad94bc31
{
"DELSLOTS"
:
{
"summary"
:
"Set hash slots as unbound
in receiving
node"
,
"summary"
:
"Set
s
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"
,
...
...
src/commands/cluster-delslotsrange.json
View file @
ad94bc31
{
"DELSLOTSRANGE"
:
{
"summary"
:
"Set hash slots as unbound
in receiving
node"
,
"summary"
:
"Set
s
hash slot
range
s 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"
,
...
...
src/commands/cluster-flushslots.json
View file @
ad94bc31
{
"FLUSHSLOTS"
:
{
"summary"
:
"Delete
a node's own
slots information"
,
"summary"
:
"Delete
s all
slots information
from a node.
"
,
"complexity"
:
"O(1)"
,
"group"
:
"cluster"
,
"since"
:
"3.0.0"
,
...
...
src/commands/cluster-forget.json
View file @
ad94bc31
{
"FORGET"
:
{
"summary"
:
"Remove a node from the nodes table"
,
"summary"
:
"Remove
s
a node from the nodes table
.
"
,
"complexity"
:
"O(1)"
,
"group"
:
"cluster"
,
"since"
:
"3.0.0"
,
...
...
src/commands/cluster-getkeysinslot.json
View file @
ad94bc31
{
"GETKEYSINSLOT"
:
{
"summary"
:
"Return
local
key names in
the specified
hash slot"
,
"summary"
:
"Return
s the
key names in
a
hash slot
.
"
,
"complexity"
:
"O(N) where N is the number of requested keys"
,
"group"
:
"cluster"
,
"since"
:
"3.0.0"
,
...
...
src/commands/cluster-help.json
View file @
ad94bc31
{
"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"
,
...
...
src/commands/cluster-info.json
View file @
ad94bc31
{
"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"
,
...
...
src/commands/cluster-keyslot.json
View file @
ad94bc31
{
"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"
,
...
...
src/commands/cluster-links.json
View file @
ad94bc31
{
"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"
,
...
...
src/commands/cluster-meet.json
View file @
ad94bc31
{
"MEET"
:
{
"summary"
:
"Force a node
cluster
to handshake with another node"
,
"summary"
:
"Force
s
a node to handshake with another node
.
"
,
"complexity"
:
"O(1)"
,
"group"
:
"cluster"
,
"since"
:
"3.0.0"
,
...
...
src/commands/cluster-myid.json
View file @
ad94bc31
{
"MYID"
:
{
"summary"
:
"Return the node
id
"
,
"summary"
:
"Return
s
the
ID of a
node
.
"
,
"complexity"
:
"O(1)"
,
"group"
:
"cluster"
,
"since"
:
"3.0.0"
,
...
...
src/commands/cluster-myshardid.json
View file @
ad94bc31
{
"MYSHARDID"
:
{
"summary"
:
"Return the
node
shard
id
"
,
"summary"
:
"Return
s
the shard
ID of a node.
"
,
"complexity"
:
"O(1)"
,
"group"
:
"cluster"
,
"since"
:
"7.2.0"
,
...
...
Prev
1
2
3
4
5
6
7
8
…
22
Next
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment