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
76b9c13d
Unverified
Commit
76b9c13d
authored
Jul 11, 2022
by
Oran Agra
Committed by
GitHub
Jul 11, 2022
Browse files
Merge pull request #10962 from oranagra/release-7.0.3
Release 7.0.3
parents
05833959
85abb7cf
Changes
86
Show whitespace changes
Inline
Side-by-side
src/commands/client-list.json
View file @
76b9c13d
...
...
@@ -25,7 +25,8 @@
"ADMIN"
,
"NOSCRIPT"
,
"LOADING"
,
"STALE"
"STALE"
,
"SENTINEL"
],
"acl_categories"
:
[
"CONNECTION"
...
...
src/commands/client-no-evict.json
View file @
76b9c13d
...
...
@@ -11,7 +11,8 @@
"ADMIN"
,
"NOSCRIPT"
,
"LOADING"
,
"STALE"
"STALE"
,
"SENTINEL"
],
"acl_categories"
:
[
"CONNECTION"
...
...
src/commands/client-pause.json
View file @
76b9c13d
...
...
@@ -17,7 +17,8 @@
"ADMIN"
,
"NOSCRIPT"
,
"LOADING"
,
"STALE"
"STALE"
,
"SENTINEL"
],
"acl_categories"
:
[
"CONNECTION"
...
...
src/commands/client-reply.json
View file @
76b9c13d
...
...
@@ -10,7 +10,8 @@
"command_flags"
:
[
"NOSCRIPT"
,
"LOADING"
,
"STALE"
"STALE"
,
"SENTINEL"
],
"acl_categories"
:
[
"CONNECTION"
...
...
src/commands/client-setname.json
View file @
76b9c13d
...
...
@@ -10,7 +10,8 @@
"command_flags"
:
[
"NOSCRIPT"
,
"LOADING"
,
"STALE"
"STALE"
,
"SENTINEL"
],
"acl_categories"
:
[
"CONNECTION"
...
...
src/commands/client-tracking.json
View file @
76b9c13d
...
...
@@ -10,7 +10,8 @@
"command_flags"
:
[
"NOSCRIPT"
,
"LOADING"
,
"STALE"
"STALE"
,
"SENTINEL"
],
"acl_categories"
:
[
"CONNECTION"
...
...
src/commands/client-trackinginfo.json
View file @
76b9c13d
...
...
@@ -10,7 +10,8 @@
"command_flags"
:
[
"NOSCRIPT"
,
"LOADING"
,
"STALE"
"STALE"
,
"SENTINEL"
],
"acl_categories"
:
[
"CONNECTION"
...
...
src/commands/client-unblock.json
View file @
76b9c13d
...
...
@@ -11,7 +11,8 @@
"ADMIN"
,
"NOSCRIPT"
,
"LOADING"
,
"STALE"
"STALE"
,
"SENTINEL"
],
"acl_categories"
:
[
"CONNECTION"
...
...
src/commands/client-unpause.json
View file @
76b9c13d
...
...
@@ -11,7 +11,8 @@
"ADMIN"
,
"NOSCRIPT"
,
"LOADING"
,
"STALE"
"STALE"
,
"SENTINEL"
],
"acl_categories"
:
[
"CONNECTION"
...
...
src/commands/cluster-meet.json
View file @
76b9c13d
...
...
@@ -7,6 +7,12 @@
"arity"
:
-4
,
"container"
:
"CLUSTER"
,
"function"
:
"clusterCommand"
,
"history"
:
[
[
"4.0.0"
,
"Added the optional `cluster_bus_port` argument."
]
],
"command_flags"
:
[
"NO_ASYNC_LOADING"
,
"ADMIN"
,
...
...
@@ -23,6 +29,12 @@
{
"name"
:
"port"
,
"type"
:
"integer"
},
{
"name"
:
"cluster_bus_port"
,
"type"
:
"integer"
,
"optional"
:
true
,
"since"
:
"4.0.0"
}
]
}
...
...
src/commands/cluster-reset.json
View file @
76b9c13d
...
...
@@ -4,7 +4,7 @@
"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"
,
"arity"
:
3
,
"arity"
:
-2
,
"container"
:
"CLUSTER"
,
"function"
:
"clusterCommand"
,
"command_flags"
:
[
...
...
src/commands/command-count.json
View file @
76b9c13d
...
...
@@ -9,7 +9,8 @@
"function"
:
"commandCountCommand"
,
"command_flags"
:
[
"LOADING"
,
"STALE"
"STALE"
,
"SENTINEL"
],
"acl_categories"
:
[
"CONNECTION"
...
...
src/commands/command-docs.json
View file @
76b9c13d
...
...
@@ -9,7 +9,8 @@
"function"
:
"commandDocsCommand"
,
"command_flags"
:
[
"LOADING"
,
"STALE"
"STALE"
,
"SENTINEL"
],
"acl_categories"
:
[
"CONNECTION"
...
...
src/commands/command-getkeys.json
View file @
76b9c13d
...
...
@@ -9,7 +9,8 @@
"function"
:
"commandGetKeysCommand"
,
"command_flags"
:
[
"LOADING"
,
"STALE"
"STALE"
,
"SENTINEL"
],
"acl_categories"
:
[
"CONNECTION"
...
...
src/commands/command-getkeysandflags.json
View file @
76b9c13d
...
...
@@ -9,7 +9,8 @@
"function"
:
"commandGetKeysAndFlagsCommand"
,
"command_flags"
:
[
"LOADING"
,
"STALE"
"STALE"
,
"SENTINEL"
],
"acl_categories"
:
[
"CONNECTION"
...
...
src/commands/command-help.json
View file @
76b9c13d
...
...
@@ -9,7 +9,8 @@
"function"
:
"commandHelpCommand"
,
"command_flags"
:
[
"LOADING"
,
"STALE"
"STALE"
,
"SENTINEL"
],
"acl_categories"
:
[
"CONNECTION"
...
...
src/commands/command-info.json
View file @
76b9c13d
...
...
@@ -15,7 +15,8 @@
],
"command_flags"
:
[
"LOADING"
,
"STALE"
"STALE"
,
"SENTINEL"
],
"acl_categories"
:
[
"CONNECTION"
...
...
src/commands/command-list.json
View file @
76b9c13d
...
...
@@ -9,7 +9,8 @@
"function"
:
"commandListCommand"
,
"command_flags"
:
[
"LOADING"
,
"STALE"
"STALE"
,
"SENTINEL"
],
"acl_categories"
:
[
"CONNECTION"
...
...
src/commands/echo.json
View file @
76b9c13d
...
...
@@ -7,6 +7,8 @@
"arity"
:
2
,
"function"
:
"echoCommand"
,
"command_flags"
:
[
"LOADING"
,
"STALE"
,
"FAST"
],
"acl_categories"
:
[
...
...
src/commands/zrange.json
View file @
76b9c13d
...
...
@@ -45,11 +45,11 @@
"key_spec_index"
:
0
},
{
"name"
:
"
min
"
,
"name"
:
"
start
"
,
"type"
:
"string"
},
{
"name"
:
"
max
"
,
"name"
:
"
stop
"
,
"type"
:
"string"
},
{
...
...
Prev
1
2
3
4
5
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