summaryrefslogtreecommitdiff
path: root/src/geo.c
Commit message (Expand)AuthorAgeFilesLines
* Fix GEOHASH negative shifting in a more compatible way.antirez2019-12-181-1/+9
* Revert "Geo: output 10 chars of geohash, not 11."antirez2019-12-181-4/+4
* Avoid changing setKey() API after #6679 fix.antirez2019-12-181-1/+1
* add a new SET option KEEPTTL that doesn't remove expire timezhaozhao.zz2019-12-181-1/+1
* Geo: output 10 chars of geohash, not 11.antirez2019-10-081-4/+4
* GEORADIUS reply: fix of the previous fix about #6417.antirez2019-10-011-1/+1
* Fix GEORADIUS replies broken after RESP3 introduction.antirez2019-10-011-2/+2
* Fix mismatching keyspace notification classesGuy Benoish2019-03-141-1/+1
* RESP3: restore the concept of null array for RESP2 compat.antirez2019-01-091-2/+2
* RESP3: geo.c updated.antirez2019-01-091-16/+16
* Fix typoJack Drogon2018-07-031-1/+1
* Added GEORADIUS(BYMEMBER)_RO variants for read-only operations.antirez2017-06-301-9/+26
* Geo: fix GEOHASH return value for consistency.antirez2016-12-201-4/+3
* Geo: fix edge case return values for uniformity.antirez2016-12-201-6/+5
* Geo: fix computation of bounding box.antirez2016-12-051-1/+24
* Multiple GEORADIUS bugs fixed.antirez2016-07-271-1/+2
* fix georadius returns multiple repliesoranagra2016-05-231-2/+5
* minor fixes - mainly signalModifiedKey, and GEORADIUSoranagra2016-05-091-0/+1
* Reply with error on negative geo radius.antirez2016-05-041-1/+4
* Eliminates engineers near the equator & prime meridianItamar Haber2016-02-181-4/+4
* Fixes a typo in a commentItamar Haber2016-02-181-1/+1
* Adjusts accuracy for GEODISTItamar Haber2016-02-181-1/+1
* New options for GEORADIUS: STORE and STOREDIST.antirez2016-02-181-42/+100
* Fix extractLongLatOrReply() sanity check conditionals.antirez2015-10-071-9/+9
* Fix GEORADIUS COUNT option arity checks.antirez2015-10-061-1/+1
* Lazyfree: Sorted sets convereted to plain SDS. (several commits squashed)antirez2015-10-011-11/+9
* GEORADIUS: Don't report duplicates when radius is huge.antirez2015-09-141-1/+11
* RDMF: REDIS_OK REDIS_ERR -> C_OK C_ERR.antirez2015-07-261-24/+24
* RDMF: OBJ_ macros for object related stuff.antirez2015-07-261-8/+8
* RDMF: use client instead of redisClient, like Disque.antirez2015-07-261-11/+11
* GEOENCODE / GEODECODE commands removed.antirez2015-07-091-93/+0
* Geo: -Ofast breaks builds on older GCCs.antirez2015-07-091-1/+1
* Geo: validate long,lat passed by user via APIantirez2015-07-061-0/+6
* Geo: sync faster decoding from krtm that synched from Ardb.antirez2015-07-011-1/+1
* Geo: added my copyright notice in modified files.geoantirez2015-06-291-0/+1
* Geo: support units only in abbreviated form.antirez2015-06-291-7/+7
* Geo: remove static declarations.antirez2015-06-291-6/+6
* Geo: GEODIST and tests.antirez2015-06-291-18/+66
* Geo: command function names converted to lowercase, as elsewhere.antirez2015-06-291-9/+9
* Geo: GEOPOS command and tests.antirez2015-06-291-0/+33
* Geo: GEOENCODE: fix command arity check.antirez2015-06-291-3/+3
* Geo: GEOENCODE now returns score ranges.antirez2015-06-291-9/+22
* Geo: fix comment indentation.antirez2015-06-291-1/+1
* Geo: debugging printf calls removed.antirez2015-06-291-7/+0
* Geo: GEOADD form using radius removed.antirez2015-06-291-19/+5
* Geo: commands top comment as in other Redis code.antirez2015-06-291-12/+7
* Geo: COUNT option for GEORADIUS.antirez2015-06-271-2/+20
* Geo: only one way to specify any given option.antirez2015-06-271-6/+7
* Geo: remove useless variable. geoRadiusGeneric() top comment improved.antirez2015-06-271-8/+4
* Geo: from lat,lon API to lon,lat API according to GIS standardantirez2015-06-261-58/+55