mirror of https://mirror.osredm.com/root/redis.git
update help.h before release (#10210)
This commit is contained in:
parent
8013af6f3d
commit
ef93125988
17
src/help.h
17
src/help.h
|
@ -1,4 +1,4 @@
|
||||||
/* Automatically generated by utils/generate-command-help.rb, do not edit. */
|
/* Automatically generated by ./utils/generate-command-help.rb, do not edit. */
|
||||||
|
|
||||||
#ifndef __REDIS_HELP_H
|
#ifndef __REDIS_HELP_H
|
||||||
#define __REDIS_HELP_H
|
#define __REDIS_HELP_H
|
||||||
|
@ -44,6 +44,11 @@ struct commandHelp {
|
||||||
"Remove the specified ACL users and the associated rules",
|
"Remove the specified ACL users and the associated rules",
|
||||||
9,
|
9,
|
||||||
"6.0.0" },
|
"6.0.0" },
|
||||||
|
{ "ACL DRYRUN",
|
||||||
|
"username command [arg [arg ...]]",
|
||||||
|
"Returns whether the user can execute the given command without executing the command.",
|
||||||
|
9,
|
||||||
|
"7.0.0" },
|
||||||
{ "ACL GENPASS",
|
{ "ACL GENPASS",
|
||||||
"[bits]",
|
"[bits]",
|
||||||
"Generate a pseudorandom secure password to use for ACL users",
|
"Generate a pseudorandom secure password to use for ACL users",
|
||||||
|
@ -550,7 +555,7 @@ struct commandHelp {
|
||||||
0,
|
0,
|
||||||
"1.0.0" },
|
"1.0.0" },
|
||||||
{ "EXPIREAT",
|
{ "EXPIREAT",
|
||||||
"key timestamp [NX|XX|GT|LT]",
|
"key unix-time-seconds [NX|XX|GT|LT]",
|
||||||
"Set the expiration for a key as a UNIX timestamp",
|
"Set the expiration for a key as a UNIX timestamp",
|
||||||
0,
|
0,
|
||||||
"1.2.0" },
|
"1.2.0" },
|
||||||
|
@ -700,7 +705,7 @@ struct commandHelp {
|
||||||
1,
|
1,
|
||||||
"6.2.0" },
|
"6.2.0" },
|
||||||
{ "GETEX",
|
{ "GETEX",
|
||||||
"key [EX seconds|PX milliseconds|EXAT unix-time|PXAT unix-time|PERSIST]",
|
"key [EX seconds|PX milliseconds|EXAT unix-time-seconds|PXAT unix-time-milliseconds|PERSIST]",
|
||||||
"Get the value of a key and optionally set its expiration",
|
"Get the value of a key and optionally set its expiration",
|
||||||
1,
|
1,
|
||||||
"6.2.0" },
|
"6.2.0" },
|
||||||
|
@ -1080,7 +1085,7 @@ struct commandHelp {
|
||||||
0,
|
0,
|
||||||
"2.6.0" },
|
"2.6.0" },
|
||||||
{ "PEXPIREAT",
|
{ "PEXPIREAT",
|
||||||
"key milliseconds-timestamp [NX|XX|GT|LT]",
|
"key unix-time-milliseconds [NX|XX|GT|LT]",
|
||||||
"Set the expiration for a key as a UNIX timestamp specified in milliseconds",
|
"Set the expiration for a key as a UNIX timestamp specified in milliseconds",
|
||||||
0,
|
0,
|
||||||
"2.6.0" },
|
"2.6.0" },
|
||||||
|
@ -1570,7 +1575,7 @@ struct commandHelp {
|
||||||
14,
|
14,
|
||||||
"6.2.0" },
|
"6.2.0" },
|
||||||
{ "XCLAIM",
|
{ "XCLAIM",
|
||||||
"key group consumer min-idle-time id [id ...] [IDLE ms] [TIME ms-unix-time] [RETRYCOUNT count] [FORCE] [JUSTID]",
|
"key group consumer min-idle-time id [id ...] [IDLE ms] [TIME unix-time-milliseconds] [RETRYCOUNT count] [FORCE] [JUSTID]",
|
||||||
"Changes (or acquires) ownership of a message in a consumer group, as if the message was delivered to the specified consumer.",
|
"Changes (or acquires) ownership of a message in a consumer group, as if the message was delivered to the specified consumer.",
|
||||||
14,
|
14,
|
||||||
"5.0.0" },
|
"5.0.0" },
|
||||||
|
@ -1755,7 +1760,7 @@ struct commandHelp {
|
||||||
4,
|
4,
|
||||||
"6.2.0" },
|
"6.2.0" },
|
||||||
{ "ZRANGE",
|
{ "ZRANGE",
|
||||||
"key start stop [BYSCORE|BYLEX] [REV] [LIMIT offset count] [WITHSCORES]",
|
"key min max [BYSCORE|BYLEX] [REV] [LIMIT offset count] [WITHSCORES]",
|
||||||
"Return a range of members in a sorted set",
|
"Return a range of members in a sorted set",
|
||||||
4,
|
4,
|
||||||
"1.2.0" },
|
"1.2.0" },
|
||||||
|
|
Loading…
Reference in New Issue