redis-cli help.h updated.

This commit is contained in:
antirez 2016-06-14 14:45:28 +02:00
parent c6e3ce38ce
commit cd8e688226

View File

@ -52,6 +52,11 @@ struct commandHelp {
"Count set bits in a string", "Count set bits in a string",
1, 1,
"2.6.0" }, "2.6.0" },
{ "BITFIELD",
"key [GET type offset] [SET type offset value] [INCRBY type offset increment] [OVERFLOW WRAP|SAT|FAIL]",
"Perform arbitrary bitfield integer operations on strings",
1,
"3.2.0" },
{ "BITOP", { "BITOP",
"operation destkey key [key ...]", "operation destkey key [key ...]",
"Perform bitwise operations between strings", "Perform bitwise operations between strings",
@ -326,32 +331,32 @@ struct commandHelp {
"key longitude latitude member [longitude latitude member ...]", "key longitude latitude member [longitude latitude member ...]",
"Add one or more geospatial items in the geospatial index represented using a sorted set", "Add one or more geospatial items in the geospatial index represented using a sorted set",
13, 13,
"" }, "3.2.0" },
{ "GEODIST", { "GEODIST",
"key member1 member2 [unit]", "key member1 member2 [unit]",
"Returns the distance between two members of a geospatial index", "Returns the distance between two members of a geospatial index",
13, 13,
"" }, "3.2.0" },
{ "GEOHASH", { "GEOHASH",
"key member [member ...]", "key member [member ...]",
"Returns members of a geospatial index as standard geohash strings", "Returns members of a geospatial index as standard geohash strings",
13, 13,
"" }, "3.2.0" },
{ "GEOPOS", { "GEOPOS",
"key member [member ...]", "key member [member ...]",
"Returns longitude and latitude of members of a geospatial index", "Returns longitude and latitude of members of a geospatial index",
13, 13,
"" }, "3.2.0" },
{ "GEORADIUS", { "GEORADIUS",
"key longitude latitude radius m|km|ft|mi [WITHCOORD] [WITHDIST] [WITHHASH] [COUNT count] [ASC|DESC]", "key longitude latitude radius m|km|ft|mi [WITHCOORD] [WITHDIST] [WITHHASH] [COUNT count] [ASC|DESC] [STORE key] [STOREDIST key]",
"Query a sorted set representing a geospatial index to fetch members matching a given maximum distance from a point", "Query a sorted set representing a geospatial index to fetch members matching a given maximum distance from a point",
13, 13,
"" }, "3.2.0" },
{ "GEORADIUSBYMEMBER", { "GEORADIUSBYMEMBER",
"key member radius m|km|ft|mi [WITHCOORD] [WITHDIST] [WITHHASH] [COUNT count] [ASC|DESC]", "key member radius m|km|ft|mi [WITHCOORD] [WITHDIST] [WITHHASH] [COUNT count] [ASC|DESC] [STORE key] [STOREDIST key]",
"Query a sorted set representing a geospatial index to fetch members matching a given maximum distance from a member", "Query a sorted set representing a geospatial index to fetch members matching a given maximum distance from a member",
13, 13,
"" }, "3.2.0" },
{ "GET", { "GET",
"key", "key",
"Get the value of a key", "Get the value of a key",