summaryrefslogtreecommitdiff
path: root/src/t_zset.c
Commit message (Expand)AuthorAgeFilesLines
* Use const in Redis Module API where possible.Yossi Gottlieb2016-06-201-2/+2
* Merge pull request #3222 from oranagra/more_minir_fixesSalvatore Sanfilippo2016-05-181-6/+6
|\
| * minor fixes - mainly signalModifiedKey, and GEORADIUSoranagra2016-05-091-6/+6
* | Modules: zset lex iterator #2.antirez2016-05-101-6/+6
* | Modules: zset lex iterator #1.antirez2016-05-101-2/+2
* | Modules: sorted set iterators WIP #2.antirez2016-05-101-1/+1
|/
* Fix ZINCRBY return value.Damian Janowski2016-04-181-0/+2
* ZREM refactored into proper API.antirez2016-04-151-49/+47
* ZRANK refactored into proper API.antirez2016-04-151-50/+71
* zsetAdd() API exposed into server.h.antirez2016-04-141-15/+0
* ZADD refactored into a proper API.antirez2016-04-141-86/+182
* New options for GEORADIUS: STORE and STOREDIST.antirez2016-02-181-5/+13
* Lazyfree: Sorted sets convereted to plain SDS. (several commits squashed)antirez2015-10-011-202/+240
* RDMF: More consistent define names.antirez2015-07-271-48/+48
* RDMF: REDIS_OK REDIS_ERR -> C_OK C_ERR.antirez2015-07-261-47/+47
* RDMF: redisAssert -> serverAssert.antirez2015-07-261-48/+48
* RDMF: OBJ_ macros for object related stuff.antirez2015-07-261-80/+80
* RDMF: use client instead of redisClient, like Disque.antirez2015-07-261-28/+28
* RDMF (Redis/Disque merge friendlyness) refactoring WIP 1.antirez2015-07-261-1/+1
* Removed useless tryObjectEncoding() call from ZRANK.antirez2015-07-031-1/+1
* Geo: zsetScore refactoringantirez2015-06-221-18/+23
* [In-Progress] Add Geo CommandsMatt Stancliff2015-06-221-1/+1
* Update t_zset.clinfangrong2015-06-021-1/+1
* ZADD RETCH option renamed CHantirez2015-05-291-4/+4
* ZADD RETCH option: Return number of elements added or updatedantirez2015-05-291-1/+4
* ZADD NX and XX optionsantirez2015-05-291-6/+26
* ZADD implemenation able to take options.antirez2015-05-281-10/+49
* Fix three simple clang analyzer warningsMatt Stancliff2014-12-231-1/+1
* Remove redundant else/return blockWei Jin2014-08-071-2/+0
* Remove useless var and check in zunionInterGenericCommand().antirez2014-07-221-2/+1
* ZUNIONSTORE reimplemented for speed.antirez2014-07-221-33/+60
* No more trailing spaces in Redis source code.antirez2014-06-261-1/+1
* fix issue 1787zionwu2014-06-011-0/+2
* ZREMRANGEBYLEX memory leak removed calling zslFreeLexRange().antirez2014-04-181-2/+5
* ZREMRANGEBYLEX implemented.antirez2014-04-171-0/+75
* Always pass sorted set range objects by reference.antirez2014-04-171-44/+46
* ZREMRANGE* commands refactored into a single generic function.antirez2014-04-171-65/+58
* Pass by pointer and release of lex ranges.antirez2014-04-161-15/+42
* ZLEXCOUNT implemented.antirez2014-04-161-0/+73
* ZRANGEBYLEX and ZREVRANGEBYLEX implementation.antirez2014-04-051-0/+438
* Fixed grammar: before H the article is a, not an.antirez2013-12-051-1/+1
* SCAN code refactored to parse cursor first.antirez2013-11-051-1/+3
* Aesthetic fix (missing space) into HSCAN and ZSCAN implementations.antirez2013-10-281-1/+1
* ZSCAN implemented.antirez2013-10-281-0/+8
* Fix comments for correctness in zunionInterGenericCommand().antirez2013-08-191-3/+5
* Properly init/release iterators in zunionInterGenericCommand().antirez2013-08-191-19/+18
* Introduction of a new string encoding: EMBSTRantirez2013-07-221-6/+9
* Z*STORE event fixed: generate del only if resulting sorted set is empty.antirez2013-01-291-1/+2
* Keyspace events: it is now possible to select subclasses of events.antirez2013-01-281-9/+13
* Keyspace events added for more commands.antirez2013-01-281-33/+52