diff options
author | Yossi Gottlieb <yossigo@gmail.com> | 2013-06-23 08:59:01 +0300 |
---|---|---|
committer | Yossi Gottlieb <yossigo@gmail.com> | 2013-06-23 08:59:01 +0300 |
commit | a9a29ff16effa0d36a16c0859c3dadb4ab87889a (patch) | |
tree | 89e376da1560d6fb16b20d1b570d9a53017458be /src/help.h | |
parent | 9cc3257e94cdbea94ea259f834409a221f121da4 (diff) | |
parent | 16ddbb7dfc435f1abb01ecd4df316827be341899 (diff) | |
download | redis-2.6.14-1.tar.gz |
Merge upstream 2.6.14.2.6.14-1
Diffstat (limited to 'src/help.h')
-rw-r--r-- | src/help.h | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/src/help.h b/src/help.h index 1378b8b85..60a5726bf 100644 --- a/src/help.h +++ b/src/help.h @@ -69,6 +69,11 @@ struct commandHelp { "Pop a value from a list, push it to another list and return it; or block until one is available", 2, "2.2.0" }, + { "CLIENT GETNAME", + "-", + "Get the current connection name", + 9, + "2.6.9" }, { "CLIENT KILL", "ip:port", "Kill the connection of a client", @@ -79,6 +84,11 @@ struct commandHelp { "Get the list of client connections", 9, "2.4.0" }, + { "CLIENT SETNAME", + "connection-name", + "Set the current connection name", + 9, + "2.6.9" }, { "CONFIG GET", "parameter", "Get the value of a configuration parameter", @@ -280,7 +290,7 @@ struct commandHelp { 1, "2.6.0" }, { "INFO", - "-", + "[section]", "Get information and statistics about the server", 9, "1.0.0" }, @@ -525,7 +535,7 @@ struct commandHelp { 8, "1.0.0" }, { "SET", - "key value", + "key value [EX seconds] [PX milliseconds] [NX|XX]", "Set the string value of a key", 1, "1.0.0" }, @@ -665,7 +675,7 @@ struct commandHelp { 7, "2.2.0" }, { "ZADD", - "key score member [score] [member]", + "key score member [score member ...]", "Add one or more members to a sorted set, or update its score if it already exists", 4, "1.2.0" }, |