]> git.saurik.com Git - redis.git/blobdiff - src/help.h
help.h update (adds bitop, bitcount, evalsha...)
[redis.git] / src / help.h
index cde95c1f8414d7c1415b9c4cd2b4cb166e8526db..1378b8b85d2667101922d897cd1e50a18669e9b4 100644 (file)
@@ -44,6 +44,16 @@ struct commandHelp {
     "Asynchronously save the dataset to disk",
     9,
     "1.0.0" },
+    { "BITCOUNT",
+    "key [start] [end]",
+    "Count set bits in a string",
+    1,
+    "2.6.0" },
+    { "BITOP",
+    "operation destkey key [key ...]",
+    "Perform bitwise operations between strings",
+    1,
+    "2.6.0" },
     { "BLPOP",
     "key [key ...] timeout",
     "Remove and get the first element in a list, or block until one is available",
@@ -59,6 +69,16 @@ 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 KILL",
+    "ip:port",
+    "Kill the connection of a client",
+    9,
+    "2.4.0" },
+    { "CLIENT LIST",
+    "-",
+    "Get the list of client connections",
+    9,
+    "2.4.0" },
     { "CONFIG GET",
     "parameter",
     "Get the value of a configuration parameter",
@@ -111,7 +131,7 @@ struct commandHelp {
     "2.0.0" },
     { "DUMP",
     "key",
-    "Return a serialized verison of the value stored at the specified key.",
+    "Return a serialized version of the value stored at the specified key.",
     0,
     "2.6.0" },
     { "ECHO",
@@ -124,6 +144,11 @@ struct commandHelp {
     "Execute a Lua script server side",
     10,
     "2.6.0" },
+    { "EVALSHA",
+    "sha1 numkeys key [key ...] arg [arg ...]",
+    "Execute a Lua script server side",
+    10,
+    "2.6.0" },
     { "EXEC",
     "-",
     "Execute all commands issued after MULTI",
@@ -325,7 +350,7 @@ struct commandHelp {
     1,
     "1.0.0" },
     { "MIGRATE",
-    "host port key destination db timeout",
+    "host port key destination-db timeout",
     "Atomically transfer a key from a Redis instance to another one.",
     0,
     "2.6.0" },
@@ -370,7 +395,7 @@ struct commandHelp {
     0,
     "2.6.0" },
     { "PEXPIREAT",
-    "key milliseconds timestamp",
+    "key milliseconds-timestamp",
     "Set the expiration for a key as a UNIX timestamp specified in milliseconds",
     0,
     "2.6.0" },
@@ -425,7 +450,7 @@ struct commandHelp {
     0,
     "1.0.0" },
     { "RESTORE",
-    "key ttl serialized value",
+    "key ttl serialized-value",
     "Create a key using the provided serialized value, previously obtained using DUMP.",
     0,
     "2.6.0" },
@@ -575,8 +600,8 @@ struct commandHelp {
     3,
     "1.0.0" },
     { "SRANDMEMBER",
-    "key",
-    "Get a random member from a set",
+    "key [count]",
+    "Get one or multiple random members from a set",
     3,
     "1.0.0" },
     { "SREM",