Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
6418b4c7
Commit
6418b4c7
authored
Dec 15, 2010
by
antirez
Browse files
help.h updated
parent
59aee551
Changes
2
Show whitespace changes
Inline
Side-by-side
src/help.h
View file @
6418b4c7
/* Automatically generated by
utils/
generate-command-help.rb, do not edit. */
/* Automatically generated by generate-command-help.rb, do not edit. */
#ifndef __REDIS_HELP_H
#ifndef __REDIS_HELP_H
#define __REDIS_HELP_H
#define __REDIS_HELP_H
...
@@ -53,11 +53,21 @@ struct commandHelp {
...
@@ -53,11 +53,21 @@ struct commandHelp {
"Remove and get the last element in a list, or block until one is available"
,
"Remove and get the last element in a list, or block until one is available"
,
2
,
2
,
"1.3.1"
},
"1.3.1"
},
{
"BRPOPLPUSH"
,
"source destination timeout"
,
"Pop a value from a list, push it to another list and return it; or block until one is available"
,
2
,
"2.1.7"
},
{
"CONFIG GET"
,
{
"CONFIG GET"
,
"parameter"
,
"parameter"
,
"Get the value of a configuration parameter"
,
"Get the value of a configuration parameter"
,
9
,
9
,
"2.0"
},
"2.0"
},
{
"CONFIG RESETSTAT"
,
"-"
,
"Reset the stats returned by INFO"
,
9
,
"2.0"
},
{
"CONFIG SET"
,
{
"CONFIG SET"
,
"parameter value"
,
"parameter value"
,
"Set a configuration parameter to the given value"
,
"Set a configuration parameter to the given value"
,
...
@@ -79,7 +89,7 @@ struct commandHelp {
...
@@ -79,7 +89,7 @@ struct commandHelp {
9
,
9
,
"0.101"
},
"0.101"
},
{
"DECR"
,
{
"DECR"
,
"key
decrement
"
,
"key"
,
"Decrement the integer value of a key by one"
,
"Decrement the integer value of a key by one"
,
1
,
1
,
"0.07"
},
"0.07"
},
...
@@ -138,6 +148,11 @@ struct commandHelp {
...
@@ -138,6 +148,11 @@ struct commandHelp {
"Get the value of a key"
,
"Get the value of a key"
,
1
,
1
,
"0.07"
},
"0.07"
},
{
"GETBIT"
,
"key offset"
,
"Returns the bit value at offset in the string value stored at key"
,
1
,
"2.1.8"
},
{
"GETSET"
,
{
"GETSET"
,
"key value"
,
"key value"
,
"Set the string value of a key and return its old value"
,
"Set the string value of a key and return its old value"
,
...
@@ -344,12 +359,12 @@ struct commandHelp {
...
@@ -344,12 +359,12 @@ struct commandHelp {
0
,
0
,
"0.07"
},
"0.07"
},
{
"RENAME"
,
{
"RENAME"
,
"
old
new"
,
"
key
new
key
"
,
"Rename a key"
,
"Rename a key"
,
0
,
0
,
"0.07"
},
"0.07"
},
{
"RENAMENX"
,
{
"RENAMENX"
,
"
old
new"
,
"
key
new
key
"
,
"Rename a key, only if the new key does not exist"
,
"Rename a key, only if the new key does not exist"
,
0
,
0
,
"0.07"
},
"0.07"
},
...
@@ -408,8 +423,13 @@ struct commandHelp {
...
@@ -408,8 +423,13 @@ struct commandHelp {
"Set the string value of a key"
,
"Set the string value of a key"
,
1
,
1
,
"0.07"
},
"0.07"
},
{
"SETBIT"
,
"key offset value"
,
"Sets or clears the bit at offset in the string value stored at key"
,
1
,
"2.1.8"
},
{
"SETEX"
,
{
"SETEX"
,
"key
timestamp
value"
,
"key
seconds
value"
,
"Set the value and expiration of a key"
,
"Set the value and expiration of a key"
,
1
,
1
,
"1.3.10"
},
"1.3.10"
},
...
@@ -418,6 +438,11 @@ struct commandHelp {
...
@@ -418,6 +438,11 @@ struct commandHelp {
"Set the value of a key, only if the key does not exist"
,
"Set the value of a key, only if the key does not exist"
,
1
,
1
,
"0.07"
},
"0.07"
},
{
"SETRANGE"
,
"key offset value"
,
"Overwrite part of a string at key starting at the specified offset"
,
1
,
"2.1.8"
},
{
"SHUTDOWN"
,
{
"SHUTDOWN"
,
"-"
,
"-"
,
"Synchronously save the dataset to disk and then shut down the server"
,
"Synchronously save the dataset to disk and then shut down the server"
,
...
@@ -454,7 +479,7 @@ struct commandHelp {
...
@@ -454,7 +479,7 @@ struct commandHelp {
3
,
3
,
"0.091"
},
"0.091"
},
{
"SORT"
,
{
"SORT"
,
"key [BY pattern] [LIMIT
star
t count] [GET pattern [GET pattern ...]] [ASC|DESC] [ALPHA] [STORE destination]"
,
"key [BY pattern] [LIMIT
offse
t count] [GET pattern [GET pattern ...]] [ASC|DESC] [ALPHA] [STORE destination]"
,
"Sort the elements in a list, set or sorted set"
,
"Sort the elements in a list, set or sorted set"
,
0
,
0
,
"0.07"
},
"0.07"
},
...
@@ -484,7 +509,7 @@ struct commandHelp {
...
@@ -484,7 +509,7 @@ struct commandHelp {
6
,
6
,
"1.3.8"
},
"1.3.8"
},
{
"SUBSTR"
,
{
"SUBSTR"
,
"key start
stop
"
,
"key start
end
"
,
"Get a substring of the string stored at a key"
,
"Get a substring of the string stored at a key"
,
1
,
1
,
"1.3.4"
},
"1.3.4"
},
...
@@ -549,17 +574,17 @@ struct commandHelp {
...
@@ -549,17 +574,17 @@ struct commandHelp {
4
,
4
,
"1.1"
},
"1.1"
},
{
"ZINTERSTORE"
,
{
"ZINTERSTORE"
,
"destination key [key ...] [WEIGHTS weight] [AGGREGATE SUM|MIN|MAX]"
,
"destination
numkeys
key [key ...] [WEIGHTS weight] [AGGREGATE SUM|MIN|MAX]"
,
"Intersect multiple sorted sets and store the resulting sorted set in a new key"
,
"Intersect multiple sorted sets and store the resulting sorted set in a new key"
,
4
,
4
,
"1.3.10"
},
"1.3.10"
},
{
"ZRANGE"
,
{
"ZRANGE"
,
"key start stop"
,
"key start stop
[WITHSCORES]
"
,
"Return a range of members in a sorted set, by index"
,
"Return a range of members in a sorted set, by index"
,
4
,
4
,
"1.1"
},
"1.1"
},
{
"ZRANGEBYSCORE"
,
{
"ZRANGEBYSCORE"
,
"key min max"
,
"key min max
[WITHSCORES] [LIMIT offset count]
"
,
"Return a range of members in a sorted set, by score"
,
"Return a range of members in a sorted set, by score"
,
4
,
4
,
"1.050"
},
"1.050"
},
...
@@ -584,10 +609,15 @@ struct commandHelp {
...
@@ -584,10 +609,15 @@ struct commandHelp {
4
,
4
,
"1.1"
},
"1.1"
},
{
"ZREVRANGE"
,
{
"ZREVRANGE"
,
"key start stop"
,
"key start stop
[WITHSCORES]
"
,
"Return a range of members in a sorted set, by index, with scores ordered from high to low"
,
"Return a range of members in a sorted set, by index, with scores ordered from high to low"
,
4
,
4
,
"1.1"
},
"1.1"
},
{
"ZREVRANGEBYSCORE"
,
"key max min [WITHSCORES] [LIMIT offset count]"
,
"Return a range of members in a sorted set, by score, with scores ordered from high to low"
,
4
,
"2.1.6"
},
{
"ZREVRANK"
,
{
"ZREVRANK"
,
"key member"
,
"key member"
,
"Determine the index of a member in a sorted set, with scores ordered from high to low"
,
"Determine the index of a member in a sorted set, with scores ordered from high to low"
,
...
@@ -599,7 +629,7 @@ struct commandHelp {
...
@@ -599,7 +629,7 @@ struct commandHelp {
4
,
4
,
"1.1"
},
"1.1"
},
{
"ZUNIONSTORE"
,
{
"ZUNIONSTORE"
,
"destination key [key ...] [WEIGHTS weight] [AGGREGATE SUM|MIN|MAX]"
,
"destination
numkeys
key [key ...] [WEIGHTS weight] [AGGREGATE SUM|MIN|MAX]"
,
"Add multiple sorted sets and store the resulting sorted set in a new key"
,
"Add multiple sorted sets and store the resulting sorted set in a new key"
,
4
,
4
,
"1.3.10"
}
"1.3.10"
}
...
...
utils/generate-command-help.rb
View file @
6418b4c7
...
@@ -42,6 +42,7 @@ end
...
@@ -42,6 +42,7 @@ end
def
commands
def
commands
return
@commands
if
@commands
return
@commands
if
@commands
require
"rubygems"
require
"net/http"
require
"net/http"
require
"net/https"
require
"net/https"
require
"json"
require
"json"
...
...
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