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
fb4e0d40
Unverified
Commit
fb4e0d40
authored
Apr 05, 2022
by
Oran Agra
Committed by
GitHub
Apr 05, 2022
Browse files
Merge pull request #10532 from oranagra/7.0-rc3
Release 7.0 rc3
parents
d2b5a579
8b242ef9
Changes
171
Hide whitespace changes
Inline
Side-by-side
src/commands/memory-malloc-stats.json
View file @
fb4e0d40
...
...
@@ -8,7 +8,9 @@
"container"
:
"MEMORY"
,
"function"
:
"memoryCommand"
,
"command_tips"
:
[
"NONDETERMINISTIC_OUTPUT"
"NONDETERMINISTIC_OUTPUT"
,
"REQUEST_POLICY:ALL_SHARDS"
,
"RESPONSE_POLICY:SPECIAL"
]
}
}
src/commands/memory-purge.json
View file @
fb4e0d40
...
...
@@ -6,6 +6,10 @@
"since"
:
"4.0.0"
,
"arity"
:
2
,
"container"
:
"MEMORY"
,
"function"
:
"memoryCommand"
"function"
:
"memoryCommand"
,
"command_tips"
:
[
"REQUEST_POLICY:ALL_SHARDS"
,
"RESPONSE_POLICY:ALL_SUCCEEDED"
]
}
}
src/commands/memory-stats.json
View file @
fb4e0d40
...
...
@@ -8,7 +8,9 @@
"container"
:
"MEMORY"
,
"function"
:
"memoryCommand"
,
"command_tips"
:
[
"NONDETERMINISTIC_OUTPUT"
"NONDETERMINISTIC_OUTPUT"
,
"REQUEST_POLICY:ALL_SHARDS"
,
"RESPONSE_POLICY:SPECIAL"
]
}
}
src/commands/migrate.json
View file @
fb4e0d40
...
...
@@ -84,7 +84,7 @@
},
{
"name"
:
"port"
,
"type"
:
"
string
"
"type"
:
"
integer
"
},
{
"name"
:
"key_or_empty_string"
,
...
...
src/commands/module-list.json
View file @
fb4e0d40
...
...
@@ -10,6 +10,9 @@
"command_flags"
:
[
"ADMIN"
,
"NOSCRIPT"
],
"command_tips"
:
[
"NONDETERMINISTIC_OUTPUT_ORDER"
]
}
}
src/commands/module-loadex.json
0 → 100644
View file @
fb4e0d40
{
"LOADEX"
:
{
"summary"
:
"Load a module with extended parameters"
,
"complexity"
:
"O(1)"
,
"group"
:
"server"
,
"since"
:
"7.0.0"
,
"arity"
:
-3
,
"container"
:
"MODULE"
,
"function"
:
"moduleCommand"
,
"command_flags"
:
[
"NO_ASYNC_LOADING"
,
"ADMIN"
,
"NOSCRIPT"
,
"PROTECTED"
],
"arguments"
:
[
{
"name"
:
"path"
,
"type"
:
"string"
},
{
"name"
:
"configs"
,
"token"
:
"CONFIG"
,
"type"
:
"block"
,
"multiple"
:
true
,
"optional"
:
true
,
"arguments"
:
[
{
"name"
:
"name"
,
"type"
:
"string"
},
{
"name"
:
"value"
,
"type"
:
"string"
}
]
},
{
"name"
:
"args"
,
"token"
:
"ARGS"
,
"type"
:
"block"
,
"multiple"
:
true
,
"optional"
:
true
,
"arguments"
:
[
{
"name"
:
"arg"
,
"type"
:
"string"
}
]
}
]
}
}
\ No newline at end of file
src/commands/monitor.json
View file @
fb4e0d40
...
...
@@ -5,20 +5,7 @@
"since"
:
"1.0.0"
,
"arity"
:
1
,
"function"
:
"monitorCommand"
,
"history"
:
[
[
"6.0.0"
,
"`AUTH` excluded from the command's output."
],
[
"6.2.0"
,
"`RESET` can be called to exit monitor mode."
],
[
"6.2.4"
,
"`AUTH`, `HELLO`, `EVAL`, `EVAL_RO`, `EVALSHA` and `EVALSHA_RO` included in the command's output."
]
],
"history"
:
[],
"command_flags"
:
[
"ADMIN"
,
"NOSCRIPT"
,
...
...
src/commands/msetnx.json
View file @
fb4e0d40
...
...
@@ -13,6 +13,10 @@
"acl_categories"
:
[
"STRING"
],
"command_tips"
:
[
"REQUEST_POLICY:MULTI_SHARD"
,
"RESPONSE_POLICY:AGG_MIN"
],
"key_specs"
:
[
{
"flags"
:
[
...
...
src/commands/object-refcount.json
View file @
fb4e0d40
...
...
@@ -13,6 +13,9 @@
"acl_categories"
:
[
"KEYSPACE"
],
"command_tips"
:
[
"NONDETERMINISTIC_OUTPUT"
],
"key_specs"
:
[
{
"flags"
:
[
...
...
src/commands/psync.json
View file @
fb4e0d40
...
...
@@ -14,7 +14,7 @@
"arguments"
:
[
{
"name"
:
"replicationid"
,
"type"
:
"
integer
"
"type"
:
"
string
"
},
{
"name"
:
"offset"
,
...
...
src/commands/pubsub-channels.json
View file @
fb4e0d40
...
...
@@ -15,7 +15,7 @@
"arguments"
:
[
{
"name"
:
"pattern"
,
"type"
:
"
string
"
,
"type"
:
"
pattern
"
,
"optional"
:
true
}
]
...
...
src/commands/pubsub-shardchannels.json
View file @
fb4e0d40
{
"SHARDCHANNELS"
:
{
"summary"
:
"List active shard channels"
,
"complexity"
:
"O(N) where N is the number of active shard channels, and assuming constant time pattern matching (relatively short channels)."
,
"group"
:
"pubsub"
,
"since"
:
"7.0.0"
,
"arity"
:
-2
,
"container"
:
"PUBSUB"
,
"function"
:
"pubsubCommand"
,
"command_flags"
:
[
"PUBSUB"
,
"LOADING"
,
"STALE"
],
"arguments"
:
[
{
"name"
:
"pattern"
,
"type"
:
"
string
"
,
"optional"
:
true
}
]
}
"SHARDCHANNELS"
:
{
"summary"
:
"List active shard channels"
,
"complexity"
:
"O(N) where N is the number of active shard channels, and assuming constant time pattern matching (relatively short channels)."
,
"group"
:
"pubsub"
,
"since"
:
"7.0.0"
,
"arity"
:
-2
,
"container"
:
"PUBSUB"
,
"function"
:
"pubsubCommand"
,
"command_flags"
:
[
"PUBSUB"
,
"LOADING"
,
"STALE"
],
"arguments"
:
[
{
"name"
:
"pattern"
,
"type"
:
"
pattern
"
,
"optional"
:
true
}
]
}
}
src/commands/pubsub-shardnumsub.json
View file @
fb4e0d40
{
"SHARDNUMSUB"
:
{
"summary"
:
"Get the count of subscribers for shard channels"
,
"complexity"
:
"O(N) for the SHARDNUMSUB subcommand, where N is the number of requested channels"
,
"group"
:
"pubsub"
,
"since"
:
"7.0.0"
,
"arity"
:
-2
,
"container"
:
"PUBSUB"
,
"function"
:
"pubsubCommand"
,
"command_flags"
:
[
"PUBSUB"
,
"LOADING"
,
"STALE"
],
"arguments"
:
[
{
"name"
:
"channel"
,
"type"
:
"string"
,
"optional"
:
true
,
"multiple"
:
true
}
]
}
"SHARDNUMSUB"
:
{
"summary"
:
"Get the count of subscribers for shard channels"
,
"complexity"
:
"O(N) for the SHARDNUMSUB subcommand, where N is the number of requested channels"
,
"group"
:
"pubsub"
,
"since"
:
"7.0.0"
,
"arity"
:
-2
,
"container"
:
"PUBSUB"
,
"function"
:
"pubsubCommand"
,
"command_flags"
:
[
"PUBSUB"
,
"LOADING"
,
"STALE"
],
"arguments"
:
[
{
"name"
:
"channel"
,
"type"
:
"string"
,
"optional"
:
true
,
"multiple"
:
true
}
]
}
}
src/commands/rename.json
View file @
fb4e0d40
...
...
@@ -6,12 +6,7 @@
"since"
:
"1.0.0"
,
"arity"
:
3
,
"function"
:
"renameCommand"
,
"history"
:
[
[
"3.2.0"
,
"The command no longer returns an error when source and destination names are the same."
]
],
"history"
:
[],
"command_flags"
:
[
"WRITE"
],
...
...
src/commands/replicaof.json
View file @
fb4e0d40
...
...
@@ -19,7 +19,7 @@
},
{
"name"
:
"port"
,
"type"
:
"
string
"
"type"
:
"
integer
"
}
]
}
...
...
src/commands/script-flush.json
View file @
fb4e0d40
...
...
@@ -10,7 +10,7 @@
"history"
:
[
[
"6.2.0"
,
"Added the `ASYNC` and `SYNC` flushing mode modifiers
, as well as the **lazyfree-lazy-user-flush** configuration directive
."
"Added the `ASYNC` and `SYNC` flushing mode modifiers."
]
],
"command_flags"
:
[
...
...
src/commands/sentinel-ckquorum.json
View file @
fb4e0d40
...
...
@@ -10,6 +10,12 @@
"ADMIN"
,
"SENTINEL"
,
"ONLY_SENTINEL"
],
"arguments"
:
[
{
"name"
:
"master-name"
,
"type"
:
"string"
}
]
}
}
src/commands/sentinel-config.json
View file @
fb4e0d40
...
...
@@ -11,6 +11,36 @@
"ADMIN"
,
"SENTINEL"
,
"ONLY_SENTINEL"
],
"arguments"
:
[
{
"name"
:
"set_or_get"
,
"type"
:
"oneof"
,
"arguments"
:[
{
"name"
:
"set_param_value"
,
"token"
:
"SET"
,
"type"
:
"block"
,
"multiple"
:
true
,
"arguments"
:[
{
"name"
:
"parameter"
,
"type"
:
"string"
},
{
"name"
:
"value"
,
"type"
:
"string"
}
]
},
{
"token"
:
"GET"
,
"multiple"
:
true
,
"name"
:
"parameter"
,
"type"
:
"string"
}
]
}
]
}
}
src/commands/sentinel-debug.json
View file @
fb4e0d40
...
...
@@ -11,6 +11,23 @@
"ADMIN"
,
"SENTINEL"
,
"ONLY_SENTINEL"
],
"arguments"
:
[
{
"name"
:
"parameter_value"
,
"type"
:
"block"
,
"multiple"
:
true
,
"arguments"
:
[
{
"name"
:
"parameter"
,
"type"
:
"string"
},
{
"name"
:
"value"
,
"type"
:
"string"
}
]
}
]
}
}
src/commands/sentinel-failover.json
View file @
fb4e0d40
...
...
@@ -10,6 +10,12 @@
"ADMIN"
,
"SENTINEL"
,
"ONLY_SENTINEL"
],
"arguments"
:
[
{
"name"
:
"master-name"
,
"type"
:
"string"
}
]
}
}
Prev
1
2
3
4
5
6
7
…
9
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