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/cluster-nodes.json
View file @
ad94bc31
{
"NODES"
:
{
"summary"
:
"
G
et
C
luster config for
the
node"
,
"summary"
:
"
R
et
urns the c
luster config
uration
for
a
node
.
"
,
"complexity"
:
"O(N) where N is the total number of Cluster nodes"
,
"group"
:
"cluster"
,
"since"
:
"3.0.0"
,
...
...
src/commands/cluster-replicas.json
View file @
ad94bc31
{
"REPLICAS"
:
{
"summary"
:
"List replica nodes of
the specified
master node"
,
"summary"
:
"List
s the
replica nodes of
a
master node
.
"
,
"complexity"
:
"O(1)"
,
"group"
:
"cluster"
,
"since"
:
"5.0.0"
,
...
...
src/commands/cluster-replicate.json
View file @
ad94bc31
{
"REPLICATE"
:
{
"summary"
:
"
Rec
onfigure a node as
a
replica of
the specified
master node"
,
"summary"
:
"
C
onfigure a node as replica of
a
master node
.
"
,
"complexity"
:
"O(1)"
,
"group"
:
"cluster"
,
"since"
:
"3.0.0"
,
...
...
src/commands/cluster-reset.json
View file @
ad94bc31
{
"RESET"
:
{
"summary"
:
"Reset a
Redis Cluster
node"
,
"summary"
:
"Reset
s
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"
,
...
...
src/commands/cluster-saveconfig.json
View file @
ad94bc31
{
"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"
,
...
...
src/commands/cluster-set-config-epoch.json
View file @
ad94bc31
{
"SET-CONFIG-EPOCH"
:
{
"summary"
:
"Set the configuration epoch
in
a new node"
,
"summary"
:
"Set
s
the configuration epoch
for
a new node
.
"
,
"complexity"
:
"O(1)"
,
"group"
:
"cluster"
,
"since"
:
"3.0.0"
,
...
...
src/commands/cluster-setslot.json
View file @
ad94bc31
{
"SETSLOT"
:
{
"summary"
:
"Bind a hash slot to a
specific
node"
,
"summary"
:
"Bind
s
a hash slot to a node
.
"
,
"complexity"
:
"O(1)"
,
"group"
:
"cluster"
,
"since"
:
"3.0.0"
,
...
...
src/commands/cluster-shards.json
View file @
ad94bc31
{
"SHARDS"
:
{
"summary"
:
"
G
et
array
of cluster slots to
node mappings
"
,
"summary"
:
"
R
et
urns 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"
,
...
...
src/commands/cluster-slaves.json
View file @
ad94bc31
{
"SLAVES"
:
{
"summary"
:
"List replica nodes of
the specified
master node"
,
"summary"
:
"List
s the
replica nodes of
a
master node
.
"
,
"complexity"
:
"O(1)"
,
"group"
:
"cluster"
,
"since"
:
"3.0.0"
,
...
...
src/commands/cluster-slots.json
View file @
ad94bc31
{
"SLOTS"
:
{
"summary"
:
"
G
et
array
of
C
luster slot to node
mapping
s"
,
"summary"
:
"
R
et
urns the mapping
of
c
luster slot
s
to nodes
.
"
,
"complexity"
:
"O(N) where N is the total number of Cluster nodes"
,
"group"
:
"cluster"
,
"since"
:
"3.0.0"
,
...
...
src/commands/cluster.json
View file @
ad94bc31
{
"CLUSTER"
:
{
"summary"
:
"A container for
c
luster commands"
,
"summary"
:
"A container for
Redis C
luster commands
.
"
,
"complexity"
:
"Depends on subcommand."
,
"group"
:
"cluster"
,
"since"
:
"3.0.0"
,
...
...
src/commands/command-count.json
View file @
ad94bc31
{
"COUNT"
:
{
"summary"
:
"
G
et
total number of Redis
commands"
,
"summary"
:
"
R
et
urns a count of
commands
.
"
,
"complexity"
:
"O(1)"
,
"group"
:
"server"
,
"since"
:
"2.8.13"
,
...
...
src/commands/command-docs.json
View file @
ad94bc31
{
"DOCS"
:
{
"summary"
:
"
G
et
array of specific Redis command documentation
"
,
"summary"
:
"
R
et
urns documentary information about a command.
"
,
"complexity"
:
"O(N) where N is the number of commands to look up"
,
"group"
:
"server"
,
"since"
:
"7.0.0"
,
...
...
src/commands/command-getkeys.json
View file @
ad94bc31
{
"GETKEYS"
:
{
"summary"
:
"Extract
keys given a full Redis
command"
,
"summary"
:
"Extract
s 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"
,
...
...
src/commands/command-getkeysandflags.json
View file @
ad94bc31
{
"GETKEYSANDFLAGS"
:
{
"summary"
:
"Extract
key
s and access flags
given a full Redis
command"
,
"summary"
:
"Extract
s the key name
s 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"
,
...
...
src/commands/command-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"
:
"server"
,
"since"
:
"5.0.0"
,
...
...
src/commands/command-info.json
View file @
ad94bc31
{
"INFO"
:
{
"summary"
:
"
G
et
array of specific Redis command details, or all when no argument is given
."
,
"summary"
:
"
R
et
urns 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"
,
...
...
src/commands/command-list.json
View file @
ad94bc31
{
"LIST"
:
{
"summary"
:
"
G
et
an array of Redis
command names"
,
"summary"
:
"
R
et
urns a list of
command names
.
"
,
"complexity"
:
"O(N) where N is the total number of Redis commands"
,
"group"
:
"server"
,
"since"
:
"7.0.0"
,
...
...
src/commands/command.json
View file @
ad94bc31
{
"COMMAND"
:
{
"summary"
:
"
G
et
array of Redis command details
"
,
"summary"
:
"
R
et
urns detailed information about all commands.
"
,
"complexity"
:
"O(N) where N is the total number of Redis commands"
,
"group"
:
"server"
,
"since"
:
"2.8.13"
,
...
...
src/commands/config-get.json
View file @
ad94bc31
{
"GET"
:
{
"summary"
:
"
G
et
th
e values of configuration parameters"
,
"summary"
:
"
R
et
urns the effectiv
e values of configuration parameters
.
"
,
"complexity"
:
"O(N) when N is the number of configuration parameters provided"
,
"group"
:
"server"
,
"since"
:
"2.0.0"
,
...
...
Prev
1
2
3
4
5
6
7
8
9
…
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