summaryrefslogtreecommitdiff
path: root/src/t_zset.c
Commit message (Expand)AuthorAgeFilesLines
* Fix zslUpdateScore() edge case.antirez2018-08-011-2/+2
* More commenting of zslUpdateScore().antirez2018-08-011-0/+2
* Explain what's the point of zslUpdateScore() in top comment.antirez2018-08-011-0/+5
* Remove old commented zslUpdateScore() from source.antirez2018-08-011-13/+0
* Optimize zslUpdateScore() as asked in #5179.antirez2018-08-011-0/+44
* zsetAdd() refactored adding zslUpdateScore().antirez2018-08-011-7/+18
* Fix typoJack Drogon2018-07-031-1/+1
* Merge pull request #4519 from soloestoy/zset-int-problemSalvatore Sanfilippo2018-06-081-9/+13
|\
| * zset: fix the int problemzhaozhao.zz2017-12-081-9/+13
* | ZPOP: invert score-ele to match ZRANGE WITHSCORES order.antirez2018-06-051-1/+1
* | ZPOP: unblock multiple clients in right wayzhaozhao.zz2018-05-311-2/+2
* | ZPOP: fix the wrong keyc, should be 1zhaozhao.zz2018-05-221-4/+4
* | ZPOP: change sync ZPOP to have a count argument instead of N keys.antirez2018-05-111-54/+93
* | ZPOP: renaming to have explicit MIN/MAX score idea.antirez2018-05-111-33/+30
* | Implements [B]Z[REV]POP and the respective unit testsItamar Haber2018-04-301-0/+144
|/
* Use SipHash hash function to mitigate HashDos attempts.antirez2017-02-201-1/+1
* Verify pairs are provided after subcommandsItamar Haber2016-12-021-1/+1
* Apply the new dictUnlink() where possible.antirez2016-09-141-5/+4
* Optimize repeated keyname hashing.oranagra2016-09-121-6/+6
* 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