summaryrefslogtreecommitdiff
path: root/src/t_zset.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fixed many typos.guiquanz2013-01-191-2/+2
* Fix integer overflow in zunionInterGenericCommand().antirez2012-11-221-1/+1
* BSD license added to every C source and header file.antirez2012-11-081-3/+32
* Fixed issue #516 (ZINTERSTORE mixing sets and zsets).antirez2012-05-231-1/+2
* A few compiler warnings suppressed.antirez2012-04-241-1/+3
* zzlIsInRange() now is capable of handling empty sorted sets that may end insi...antirez2012-02-221-1/+1
* bzero -> memsetantirez2012-02-211-1/+1
* added a comment on top of the zslRandomLevel() functionantirez2012-01-161-0/+4
* error in comment fixedantirez2012-01-111-1/+1
* Prevent NaN scores in sorted sets resulting from calls to ZUNIONSTORE and ZIN...antirez2011-12-231-0/+3
* Fix issue #247 : Accepting non-integer parameters when shouldn'tBigCat2011-12-191-5/+8
* added assertion in zslInsert() that ensures the inserted element score is not...antirez2011-12-181-0/+1