Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
a83e3663
You need to sign in or sign up before continuing.
Commit
a83e3663
authored
Feb 28, 2022
by
Oran Agra
Browse files
Merge remote-tracking branch 'origin/unstable' into 7.0
parents
d5915a16
5860fa3d
Changes
142
Hide whitespace changes
Inline
Side-by-side
src/commands/cluster-setslot.json
View file @
a83e3663
...
...
@@ -26,17 +26,17 @@
"arguments"
:
[
{
"name"
:
"node-id"
,
"type"
:
"
integer
"
,
"type"
:
"
string
"
,
"token"
:
"IMPORTING"
},
{
"name"
:
"node-id"
,
"type"
:
"
integer
"
,
"type"
:
"
string
"
,
"token"
:
"MIGRATING"
},
{
"name"
:
"node-id"
,
"type"
:
"
integer
"
,
"type"
:
"
string
"
,
"token"
:
"NODE"
},
{
...
...
src/commands/command-getkeysandflags.json
0 → 100644
View file @
a83e3663
{
"GETKEYSANDFLAGS"
:
{
"summary"
:
"Extract keys given a full Redis command"
,
"complexity"
:
"O(N) where N is the number of arguments to the command"
,
"group"
:
"server"
,
"since"
:
"7.0.0"
,
"arity"
:
-4
,
"container"
:
"COMMAND"
,
"function"
:
"commandGetKeysAndFlagsCommand"
,
"command_flags"
:
[
"LOADING"
,
"STALE"
],
"acl_categories"
:
[
"CONNECTION"
]
}
}
src/commands/fcall.json
View file @
a83e3663
{
"FCALL"
:
{
"summary"
:
"
PATCH__TBD__38__
"
,
"complexity"
:
"
PATCH__TBD__37__
"
,
"summary"
:
"
Invoke a function
"
,
"complexity"
:
"
Depends on the function that is executed.
"
,
"group"
:
"scripting"
,
"since"
:
"7.0.0"
,
"arity"
:
-3
,
...
...
src/commands/fcall_ro.json
View file @
a83e3663
{
"FCALL_RO"
:
{
"summary"
:
"
PATCH__TBD__7__
"
,
"complexity"
:
"
PATCH__TBD__6__
"
,
"summary"
:
"
Invoke a read-only function
"
,
"complexity"
:
"
Depends on the function that is executed.
"
,
"group"
:
"scripting"
,
"since"
:
"7.0.0"
,
"arity"
:
-3
,
...
...
src/commands/function-delete.json
View file @
a83e3663
...
...
@@ -20,7 +20,7 @@
],
"arguments"
:
[
{
"name"
:
"
function
-name"
,
"name"
:
"
library
-name"
,
"type"
:
"string"
}
]
...
...
src/commands/function-load.json
View file @
a83e3663
...
...
@@ -37,7 +37,7 @@
{
"name"
:
"library-description"
,
"type"
:
"string"
,
"token"
:
"DESC"
,
"token"
:
"DESC
RIPTION
"
,
"optional"
:
true
},
{
...
...
src/commands/info.json
View file @
a83e3663
...
...
@@ -6,6 +6,12 @@
"since"
:
"1.0.0"
,
"arity"
:
-1
,
"function"
:
"infoCommand"
,
"history"
:
[
[
"7.0.0"
,
"Added support for taking multiple section arguments."
]
],
"command_flags"
:
[
"LOADING"
,
"STALE"
,
...
...
@@ -23,6 +29,7 @@
{
"name"
:
"section"
,
"type"
:
"string"
,
"multiple"
:
true
,
"optional"
:
true
}
]
...
...
src/commands/pubsub-shardnumsub.json
View file @
a83e3663
...
...
@@ -11,6 +11,14 @@
"PUBSUB"
,
"LOADING"
,
"STALE"
],
"arguments"
:
[
{
"name"
:
"channel"
,
"type"
:
"string"
,
"optional"
:
true
,
"multiple"
:
true
}
]
}
}
src/commands/replconf.json
View file @
a83e3663
...
...
@@ -13,7 +13,8 @@
"ADMIN"
,
"NOSCRIPT"
,
"LOADING"
,
"STALE"
"STALE"
,
"ALLOW_BUSY"
]
}
}
src/commands/replicaof.json
View file @
a83e3663
...
...
@@ -9,7 +9,6 @@
"command_flags"
:
[
"NO_ASYNC_LOADING"
,
"ADMIN"
,
"ALLOW_BUSY"
,
"NOSCRIPT"
,
"STALE"
],
...
...
src/commands/sentinel-debug.json
View file @
a83e3663
{
"DEBUG"
:
{
"summary"
:
"List or update the current configurable parameters"
,
"complexity"
:
"O(N) where N is the number of configurable parameters"
,
"group"
:
"sentinel"
,
"since"
:
"7.0.0"
,
"arity"
:
-2
,
...
...
src/commands/slaveof.json
View file @
a83e3663
{
"SLAVEOF"
:
{
"summary"
:
"Make the server a replica of another instance, or promote it as master.
Deprecated starting with Redis 5. Use REPLICAOF instead.
"
,
"summary"
:
"Make the server a replica of another instance, or promote it as master."
,
"complexity"
:
"O(1)"
,
"group"
:
"server"
,
"since"
:
"1.0.0"
,
"arity"
:
3
,
"function"
:
"replicaofCommand"
,
"deprecated_since"
:
"5.0.0"
,
"replaced_by"
:
"`REPLICAOF`"
,
"doc_flags"
:
[
"DEPRECATED"
],
"command_flags"
:
[
"NO_ASYNC_LOADING"
,
"ADMIN"
,
...
...
src/commands/spublish.json
View file @
a83e3663
...
...
@@ -26,7 +26,7 @@
"key_specs"
:
[
{
"flags"
:
[
"
CHANNEL
"
"
NOT_KEY
"
],
"begin_search"
:
{
"index"
:
{
...
...
src/commands/ssubscribe.json
View file @
a83e3663
...
...
@@ -22,7 +22,7 @@
"key_specs"
:
[
{
"flags"
:
[
"
CHANNEL
"
"
NOT_KEY
"
],
"begin_search"
:
{
"index"
:
{
...
...
src/commands/sunsubscribe.json
View file @
a83e3663
...
...
@@ -23,7 +23,7 @@
"key_specs"
:
[
{
"flags"
:
[
"
CHANNEL
"
"
NOT_KEY
"
],
"begin_search"
:
{
"index"
:
{
...
...
src/commands/xautoclaim.json
View file @
a83e3663
...
...
@@ -6,6 +6,12 @@
"since"
:
"6.2.0"
,
"arity"
:
-6
,
"function"
:
"xautoclaimCommand"
,
"history"
:
[
[
"7.0.0"
,
"Added an element to the reply array, containing deleted entries the command cleared from the PEL"
]
],
"command_flags"
:
[
"WRITE"
,
"FAST"
...
...
src/commands/xgroup-create.json
View file @
a83e3663
...
...
@@ -7,6 +7,12 @@
"arity"
:
-5
,
"container"
:
"XGROUP"
,
"function"
:
"xgroupCommand"
,
"history"
:
[
[
"7.0.0"
,
"Added the `entries_read` named argument."
]
],
"command_flags"
:
[
"WRITE"
,
"DENYOOM"
...
...
@@ -64,6 +70,12 @@
"name"
:
"mkstream"
,
"type"
:
"pure-token"
,
"optional"
:
true
},
{
"token"
:
"ENTRIESREAD"
,
"name"
:
"entries_read"
,
"type"
:
"integer"
,
"optional"
:
true
}
]
}
...
...
src/commands/xgroup-setid.json
View file @
a83e3663
...
...
@@ -4,9 +4,15 @@
"complexity"
:
"O(1)"
,
"group"
:
"stream"
,
"since"
:
"5.0.0"
,
"arity"
:
5
,
"arity"
:
-
5
,
"container"
:
"XGROUP"
,
"function"
:
"xgroupCommand"
,
"history"
:
[
[
"7.0.0"
,
"Added the optional `entries_read` argument."
]
],
"command_flags"
:
[
"WRITE"
],
...
...
@@ -57,6 +63,12 @@
"token"
:
"$"
}
]
},
{
"name"
:
"entries_read"
,
"token"
:
"ENTRIESREAD"
,
"type"
:
"integer"
,
"optional"
:
true
}
]
}
...
...
src/commands/xinfo-groups.json
View file @
a83e3663
...
...
@@ -6,6 +6,12 @@
"since"
:
"5.0.0"
,
"arity"
:
3
,
"container"
:
"XINFO"
,
"history"
:
[
[
"7.0.0"
,
"Added the `entries-read` and `lag` fields"
]
],
"function"
:
"xinfoCommand"
,
"command_flags"
:
[
"READONLY"
...
...
src/commands/xinfo-stream.json
View file @
a83e3663
...
...
@@ -6,6 +6,12 @@
"since"
:
"5.0.0"
,
"arity"
:
-3
,
"container"
:
"XINFO"
,
"history"
:
[
[
"7.0.0"
,
"Added the `max-deleted-entry-id`, `entries-added`, `recorded-first-entry-id`, `entries-read` and `lag` fields"
]
],
"function"
:
"xinfoCommand"
,
"command_flags"
:
[
"READONLY"
...
...
Prev
1
2
3
4
5
6
7
8
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