summaryrefslogtreecommitdiff
path: root/src/geo.c
Commit message (Expand)AuthorAgeFilesLines
...
* 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
* Geo: explain increment magic in membersOfGeoHashBox().antirez2015-06-241-0/+20
* Geo: GEOHASH command added, returning standard geohash strings.antirez2015-06-241-0/+55
* Geo: Fix geohashEstimateStepsByRadius() step underestimation.antirez2015-06-241-2/+2
* Geo: return REDIS_* where appropriate, improve commentingantirez2015-06-231-12/+19
* Geo: GEOADD implementation improved, replication fixedantirez2015-06-231-37/+28
* Geo: more x,y renamed lat,lonantirez2015-06-231-8/+8
* Geo: rename x,y to lat,lon for clarityantirez2015-06-231-13/+12
* Geo: use the high level API to decode in geoAppendIfWithinRadius()antirez2015-06-231-12/+7
* Geo: big refactoring of geo.c, zset.[ch] removed.antirez2015-06-231-128/+178
* Geo: Pub/Sub feature removedantirez2015-06-221-32/+0
* Geo: addReplyDoubleDistance() precision set to 4 digitsantirez2015-06-221-6/+8
* Geo: JSON features removedantirez2015-06-221-139/+14
* Geo: removed bool usage from Geo code inside Redisantirez2015-06-221-26/+27
* [In-Progress] Add Geo CommandsMatt Stancliff2015-06-221-0/+749