Unverified Commit d2b5a579 authored by Oran Agra's avatar Oran Agra Committed by GitHub
Browse files

Merge pull request #10355 from oranagra/release-7.0-rc2

Release 7.0 RC2
parents d5915a16 10dc57ab
This diff is collapsed.
......@@ -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"
},
{
......
{
"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"
]
}
}
{
"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,
......
{
"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,
......
......@@ -20,7 +20,7 @@
],
"arguments": [
{
"name": "function-name",
"name": "library-name",
"type": "string"
}
]
......
......@@ -37,7 +37,7 @@
{
"name": "library-description",
"type": "string",
"token": "DESC",
"token": "DESCRIPTION",
"optional": true
},
{
......
......@@ -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
}
]
......
......@@ -11,6 +11,14 @@
"PUBSUB",
"LOADING",
"STALE"
],
"arguments": [
{
"name": "channel",
"type": "string",
"optional": true,
"multiple": true
}
]
}
}
......@@ -13,7 +13,8 @@
"ADMIN",
"NOSCRIPT",
"LOADING",
"STALE"
"STALE",
"ALLOW_BUSY"
]
}
}
......@@ -9,7 +9,6 @@
"command_flags": [
"NO_ASYNC_LOADING",
"ADMIN",
"ALLOW_BUSY",
"NOSCRIPT",
"STALE"
],
......
{
"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,
......
{
"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",
......
......@@ -26,7 +26,7 @@
"key_specs": [
{
"flags": [
"CHANNEL"
"NOT_KEY"
],
"begin_search": {
"index": {
......
......@@ -22,7 +22,7 @@
"key_specs": [
{
"flags": [
"CHANNEL"
"NOT_KEY"
],
"begin_search": {
"index": {
......
......@@ -23,7 +23,7 @@
"key_specs": [
{
"flags": [
"CHANNEL"
"NOT_KEY"
],
"begin_search": {
"index": {
......
......@@ -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"
......
......@@ -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
}
]
}
......
......@@ -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
}
]
}
......
......@@ -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"
......
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