Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
redis
Commits
31ef410e
Unverified
Commit
31ef410e
authored
Aug 21, 2022
by
Itamar Haber
Committed by
GitHub
Aug 21, 2022
Browse files
Adds historical note about lower-case geo units support (#11162)
This change was part of #9656 (Redis 7.0)
parent
c3a0253b
Changes
5
Hide whitespace changes
Inline
Side-by-side
src/commands.c
View file @
31ef410e
...
@@ -1928,6 +1928,7 @@ struct redisCommandArg GEOPOS_Args[] = {
...
@@ -1928,6 +1928,7 @@ struct redisCommandArg GEOPOS_Args[] = {
/* GEORADIUS history */
/* GEORADIUS history */
commandHistory
GEORADIUS_History
[]
=
{
commandHistory
GEORADIUS_History
[]
=
{
{
"6.2.0"
,
"Added the `ANY` option for `COUNT`."
},
{
"6.2.0"
,
"Added the `ANY` option for `COUNT`."
},
{
"7.0.0"
,
"Added support for lower-case unit names."
},
{
0
}
{
0
}
};
};
...
@@ -1977,7 +1978,10 @@ struct redisCommandArg GEORADIUS_Args[] = {
...
@@ -1977,7 +1978,10 @@ struct redisCommandArg GEORADIUS_Args[] = {
/********** GEORADIUSBYMEMBER ********************/
/********** GEORADIUSBYMEMBER ********************/
/* GEORADIUSBYMEMBER history */
/* GEORADIUSBYMEMBER history */
#define GEORADIUSBYMEMBER_History NULL
commandHistory
GEORADIUSBYMEMBER_History
[]
=
{
{
"7.0.0"
,
"Added support for lower-case unit names."
},
{
0
}
};
/* GEORADIUSBYMEMBER tips */
/* GEORADIUSBYMEMBER tips */
#define GEORADIUSBYMEMBER_tips NULL
#define GEORADIUSBYMEMBER_tips NULL
...
@@ -2118,7 +2122,10 @@ struct redisCommandArg GEORADIUS_RO_Args[] = {
...
@@ -2118,7 +2122,10 @@ struct redisCommandArg GEORADIUS_RO_Args[] = {
/********** GEOSEARCH ********************/
/********** GEOSEARCH ********************/
/* GEOSEARCH history */
/* GEOSEARCH history */
#define GEOSEARCH_History NULL
commandHistory
GEOSEARCH_History
[]
=
{
{
"7.0.0"
,
"Added support for lower-case unit names."
},
{
0
}
};
/* GEOSEARCH tips */
/* GEOSEARCH tips */
#define GEOSEARCH_tips NULL
#define GEOSEARCH_tips NULL
...
@@ -2207,7 +2214,10 @@ struct redisCommandArg GEOSEARCH_Args[] = {
...
@@ -2207,7 +2214,10 @@ struct redisCommandArg GEOSEARCH_Args[] = {
/********** GEOSEARCHSTORE ********************/
/********** GEOSEARCHSTORE ********************/
/* GEOSEARCHSTORE history */
/* GEOSEARCHSTORE history */
#define GEOSEARCHSTORE_History NULL
commandHistory
GEOSEARCHSTORE_History
[]
=
{
{
"7.0.0"
,
"Added support for lower-case unit names."
},
{
0
}
};
/* GEOSEARCHSTORE tips */
/* GEOSEARCHSTORE tips */
#define GEOSEARCHSTORE_tips NULL
#define GEOSEARCHSTORE_tips NULL
...
...
src/commands/georadius.json
View file @
31ef410e
...
@@ -11,6 +11,10 @@
...
@@ -11,6 +11,10 @@
[
[
"6.2.0"
,
"6.2.0"
,
"Added the `ANY` option for `COUNT`."
"Added the `ANY` option for `COUNT`."
],
[
"7.0.0"
,
"Added support for lower-case unit names."
]
]
],
],
"deprecated_since"
:
"6.2.0"
,
"deprecated_since"
:
"6.2.0"
,
...
...
src/commands/georadiusbymember.json
View file @
31ef410e
...
@@ -7,6 +7,12 @@
...
@@ -7,6 +7,12 @@
"arity"
:
-5
,
"arity"
:
-5
,
"function"
:
"georadiusbymemberCommand"
,
"function"
:
"georadiusbymemberCommand"
,
"get_keys_function"
:
"georadiusGetKeys"
,
"get_keys_function"
:
"georadiusGetKeys"
,
"history"
:
[
[
"7.0.0"
,
"Added support for lower-case unit names."
]
],
"deprecated_since"
:
"6.2.0"
,
"deprecated_since"
:
"6.2.0"
,
"replaced_by"
:
"`GEOSEARCH` and `GEOSEARCHSTORE` with the `BYRADIUS` and `FROMMEMBER` arguments"
,
"replaced_by"
:
"`GEOSEARCH` and `GEOSEARCHSTORE` with the `BYRADIUS` and `FROMMEMBER` arguments"
,
"doc_flags"
:
[
"doc_flags"
:
[
...
...
src/commands/geosearch.json
View file @
31ef410e
...
@@ -6,6 +6,12 @@
...
@@ -6,6 +6,12 @@
"since"
:
"6.2.0"
,
"since"
:
"6.2.0"
,
"arity"
:
-7
,
"arity"
:
-7
,
"function"
:
"geosearchCommand"
,
"function"
:
"geosearchCommand"
,
"history"
:
[
[
"7.0.0"
,
"Added support for lower-case unit names."
]
],
"command_flags"
:
[
"command_flags"
:
[
"READONLY"
"READONLY"
],
],
...
...
src/commands/geosearchstore.json
View file @
31ef410e
...
@@ -6,6 +6,12 @@
...
@@ -6,6 +6,12 @@
"since"
:
"6.2.0"
,
"since"
:
"6.2.0"
,
"arity"
:
-8
,
"arity"
:
-8
,
"function"
:
"geosearchstoreCommand"
,
"function"
:
"geosearchstoreCommand"
,
"history"
:
[
[
"7.0.0"
,
"Added support for lower-case unit names."
]
],
"command_flags"
:
[
"command_flags"
:
[
"WRITE"
,
"WRITE"
,
"DENYOOM"
"DENYOOM"
...
...
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