summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* An interesting refactoring + more expressive internal APIantirez2010-03-154-3/+49
* Fixed the same problem in ZREVRANKantirez2010-03-152-2/+2
* Fixed a ZRANK bugantirez2010-03-152-2/+2
* zipmap to hash conversion in HSETantirez2010-03-152-0/+28
* max zipmap entries and max zipmap value parameters added into INFO outputantirez2010-03-141-0/+7
* HDEL and some improvement in DEBUG OBJECT commandantirez2010-03-142-2/+43
* Append only file support for hashesantirez2010-03-142-11/+64
* utility to check rdb files for unprocessable opcodesPieter Noordhuis2010-03-133-1/+678
* A minor fix and a few debug messages removedantirez2010-03-122-6/+3
* Applied the replication bug patch provided by Jeremy Zawodny, removing temp f...antirez2010-03-122-3/+63
* Fix for HGET against non Hash type, debug messages used to understand a bit b...antirez2010-03-111-0/+11
* fix: use zmalloc instead of mallocPieter Noordhuis2010-03-091-1/+1
* Merged zsetops branch from Pieternantirez2010-03-093-0/+195
|\
| * use a struct to store both a dict and its weight for ZUNION and ZINTER, so qs...Pieter Noordhuis2010-03-091-39/+42
| * replaced ZMERGE by ZUNION and ZINTER. note: key preloading by the VM does not...Pieter Noordhuis2010-03-092-65/+137
| * use ZMERGE as starting pointPieter Noordhuis2010-03-083-0/+120
* | Merged ZREMBYRANK from Pieternantirez2010-03-092-48/+116
|\ \
| * | moved code to delete a single node from a zset to a separate functionPieter Noordhuis2010-03-041-66/+30
| * | rename zslDeleteRange to zslDeleteRangeByScore (to differentiate between dele...Pieter Noordhuis2010-03-041-2/+2
| * | use 1-based rank across zsl*Rank functions consistentlyPieter Noordhuis2010-03-041-8/+6
| * | implemented ZREMBYRANKPieter Noordhuis2010-03-042-2/+108
* | | Merged ZREVRANK from Pieternantirez2010-03-092-2/+20
|\ \ \
| * | | added ZREVRANKPieter Noordhuis2010-03-072-2/+20
* | | | Hash auto conversion from zipmap to hash table, type fixed for hashes, hash l...antirez2010-03-092-2/+66
* | | | Hashes saving / fixesantirez2010-03-084-19/+65
| |_|/ |/| |
* | | HSET fixes, now the new pointer is stored back in the object pointer fieldantirez2010-03-073-2/+42
|/ /
* | Fix for replicaiton with over 2GB dump file initial SYNC stageantirez2010-03-061-3/+3
* | first implementation of HSET/HSET. More work neededantirez2010-03-064-1/+79
* | zipmaps functions to get, iterate, test for existence. Initial works for Hash...antirez2010-03-054-24/+136
* | redis-benchmark now implements Set commands benchmarksantirez2010-03-041-1/+19
* | zipmap iteration codeantirez2010-03-041-0/+41
|/
* A fix for initialization of augmented skip listsantirez2010-03-041-1/+4
* A fix for an invalid access when VM is disabledantirez2010-03-041-1/+1
* Merge branch 'zsl-get-rank' of git://github.com/pietern/redisantirez2010-03-041-51/+91
|\
| * merged memory reduction patchPieter Noordhuis2010-03-041-17/+28
| |\
| | * use less memory as element->span[0] will always be 1; any level 0 skip list i...Pieter Noordhuis2010-03-031-15/+34
| * | first check if starting point is trivial (head or tail) before applying log(N...Pieter Noordhuis2010-03-041-3/+5
| * | use rank to find starting point for ZRANGE and ZREVRANGEPieter Noordhuis2010-03-041-6/+22
| * | lookup rank of a zset entry in a different functionPieter Noordhuis2010-03-041-30/+41
* | | redis-cli now runs in interactive mode if no command is providedantirez2010-03-041-4/+2
* | | Now list push commands return the length of the new list, thanks to Gustavo P...antirez2010-03-042-8/+13
|/ /
* | SUBSTR fix for integer encoded valsantirez2010-03-041-1/+6
* | fix ZRANK (realize that rank is 1-based due to the skip list header)Pieter Noordhuis2010-03-042-4/+7
* | initial implementation of SUBSTRantirez2010-03-032-0/+42
* | TODO updatedantirez2010-03-031-1/+2
* | fpurge call removed from redis-cliantirez2010-03-031-3/+0
* | ZRANK stress testerantirez2010-03-032-0/+26
|/
* rank is very unlikely to overflow integer rangePieter Noordhuis2010-03-031-4/+4
* x->backward never equals zsl->headerPieter Noordhuis2010-03-031-4/+2
* initial implementation for augmented zsets and the zrank commandPieter Noordhuis2010-03-032-7/+98