summaryrefslogtreecommitdiffstats
path: root/iredis/data/commands/georadiusbymember.md
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2020-03-21 10:28:17 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-02-07 11:16:53 +0000
commit06cba6ccd165ca8b224797e37fccb9e63f026d77 (patch)
treee82f1bc439997ae296f2e74f8a64d84c5d95f140 /iredis/data/commands/georadiusbymember.md
parentInitial commit. (diff)
downloadiredis-06cba6ccd165ca8b224797e37fccb9e63f026d77.tar.xz
iredis-06cba6ccd165ca8b224797e37fccb9e63f026d77.zip
Adding upstream version 1.9.1.upstream/1.9.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'iredis/data/commands/georadiusbymember.md')
-rw-r--r--iredis/data/commands/georadiusbymember.md21
1 files changed, 21 insertions, 0 deletions
diff --git a/iredis/data/commands/georadiusbymember.md b/iredis/data/commands/georadiusbymember.md
new file mode 100644
index 0000000..88c1be4
--- /dev/null
+++ b/iredis/data/commands/georadiusbymember.md
@@ -0,0 +1,21 @@
+This command is exactly like `GEORADIUS` with the sole difference that instead
+of taking, as the center of the area to query, a longitude and latitude value,
+it takes the name of a member already existing inside the geospatial index
+represented by the sorted set.
+
+The position of the specified member is used as the center of the query.
+
+Please check the example below and the `GEORADIUS` documentation for more
+information about the command and its options.
+
+Note that `GEORADIUSBYMEMBER_RO` is also available since Redis 3.2.10 and Redis
+4.0.0 in order to provide a read-only command that can be used in replicas. See
+the `GEORADIUS` page for more information.
+
+@examples
+
+```cli
+GEOADD Sicily 13.583333 37.316667 "Agrigento"
+GEOADD Sicily 13.361389 38.115556 "Palermo" 15.087269 37.502669 "Catania"
+GEORADIUSBYMEMBER Sicily Agrigento 100 km
+```