Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpredis/phpredis.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichael-grunder <michael.grunder@gmail.com>2018-04-10 09:16:33 +0300
committerMichael Grunder <michael.grunder@gmail.com>2018-04-10 22:07:06 +0300
commit1d7f899e784526d555c055878fbcd3deb9563228 (patch)
treeee8fb03cb8ae3ebcbeb1235822728aa4d225d2ca /README.markdown
parent368975bc30dc228d1cbe004ad5587c732da3f9d0 (diff)
Alignment :)
Diffstat (limited to 'README.markdown')
-rw-r--r--README.markdown20
1 files changed, 10 insertions, 10 deletions
diff --git a/README.markdown b/README.markdown
index 6c1c6db7..bbbeb031 100644
--- a/README.markdown
+++ b/README.markdown
@@ -3165,16 +3165,16 @@ _**Description**_: Return members of a set with geospatial information that are
##### *Options Array*
The georadius command can be called with various options that control how Redis returns results. The following table describes the options phpredis supports. All options are case insensitive.
-| Key | Value | Description
-| :--- | :--- | :---- |
-| COUNT | integer > 0 | Limit how many results are returned
-| | WITHCOORD | Return longitude and latitude of matching members
-| | WITHDIST | Return the distance from the center
-| | WITHHASH | Return the raw geohash-encoded score
-| | ASC | Sort results in ascending order
-| | DESC | Sort results in descending order
-| STORE | _key_ | Store results in _key_
-| STOREDIST | _key_ | Store the results as distances in _key_
+| Key | Value | Description
+| :--- | :--- | :---- |
+| COUNT | integer > 0 | Limit how many results are returned
+| | WITHCOORD | Return longitude and latitude of matching members
+| | WITHDIST | Return the distance from the center
+| | WITHHASH | Return the raw geohash-encoded score
+| | ASC | Sort results in ascending order
+| | DESC | Sort results in descending order
+| STORE | _key_ | Store results in _key_
+| STOREDIST | _key_ | Store the results as distances in _key_
*Note*: It doesn't make sense to pass both `ASC` and `DESC` options but if both are passed the last one passed will be used.
*Note*: When using `STORE[DIST]` in Redis Cluster, the store key must has to the same slot as the query key or you will get a `CROSSLOT` error.