]> git.saurik.com Git - redis.git/history - redis.c
-1 not needed...
[redis.git] / redis.c
2010-04-08  antirez-1 not needed...
2010-04-08  antirezSkiplist theoretical fix
2010-04-07  antirezNow when a child is terminated by a signal, the signal...
2010-04-02  antirezNow PUBLISH commands are replicated to slaves
2010-04-01  Pieter Noordhuisuse the right object when cleaning up after zunion...
2010-04-01  antirezMerge branch 'zipmap' of git://github.com/pietern/redis
2010-04-01  Pieter Noordhuisreduce code complexity because zipmapLen now is O(1)
2010-04-01  antirezPub/Sub pattern matching capabilities
2010-03-31  antirezDeny EXEC under out of memory
2010-03-29  antirezNo timeouts nor other commands for clients in a Pub...
2010-03-29  antirezfree hash table entries about no longer active classes...
2010-03-29  antirezFixed a refcount stuff leading to PUBSUB crashes
2010-03-29  antirezFirst pubsub fix
2010-03-29  antirezPUBSUB implemented
2010-03-29  antirezRedis version is now 1.3.8
2010-03-26  antirezMerge branch 'hincrby' of git://github.com/pietern...
2010-03-26  Pieter Noordhuisremoved unnecessary refcount increase that caused the...
2010-03-26  Pieter Noordhuisimplements HINCRBY and tests (todo: find and fix small...
2010-03-26  antirezRemoved a useless if spotted by Pieter Noordhuis
2010-03-26  antirezFixed a critical replication bug: binary values issued...
2010-03-24  antirezFixed the reply about denied write commands under...
2010-03-24  antirezCONFIG command implemened -- just a start but already...
2010-03-23  antirezwith --help states that you can use - as config file...
2010-03-23  antirezNew INFO field: expired_keys
2010-03-23  antirezthe Cron timer function is now called 10 times per...
2010-03-23  antirezkey deletion on empty value fix + some refactoring
2010-03-23  antirezEmpty value trigger key removal in all the operations
2010-03-22  antirezMerged gnrfan patches fixing issues 191, 193, 194
2010-03-22  antirezMerge branch 'issue_193' of git://github.com/gnrfan...
2010-03-22  antirezMerge branch 'issue_191' of git://github.com/gnrfan...
2010-03-22  antirezRedis master version is now 1.3.7
2010-03-20  Jeremy Zawodnysupport for include directive in config parser
2010-03-19  antirezRemoved a stupid overriding of config values due to...
2010-03-19  antirezVM hash type swappability implemented. Handling of...
2010-03-19  Antonio OgnioSolving issue #191 on Google Code: -v and --version...
2010-03-19  Antonio OgnioSolves issue #194 on Google Code: --help parameter...
2010-03-19  Antonio OgnioFixing issue 193
2010-03-18  antirezincrement server.dirty on HDEL
2010-03-18  antirezRedis 1.3.6
2010-03-18  antirezOptimization fixed and re-activated
2010-03-18  antirezreverted an optimization that makes Redis not stable
2010-03-17  antirezHDEL fix, an optimization for comparison of objects...
2010-03-17  antirezVersion is now 1.3.5
2010-03-17  antirezMerged Pietern patch for VM key args helper function...
2010-03-17  antirezMerge branch 'aggregates' of git://github.com/pietern...
2010-03-17  antirezHEXISTS and tests implemented
2010-03-17  antirezFixed a bug in HSET, a memory leak, and a theoretical...
2010-03-16  Pieter Noordhuisadded preloading keys from VM when using ZINTER or...
2010-03-16  Pieter Noordhuisadded explicit AGGREGATE [SUM|MIN|MAX] option to ZUNION...
2010-03-16  antirezHGET fix for integer encoded field against zipmap encod...
2010-03-16  antirezHKEYS / HVALS / HGETALL
2010-03-16  antirezSolved a memory leak with Hashes
2010-03-15  antirezpretty big refactoring
2010-03-15  antirezAn interesting refactoring + more expressive internal API
2010-03-15  antirezFixed the same problem in ZREVRANK
2010-03-15  antirezFixed a ZRANK bug
2010-03-15  antirezzipmap to hash conversion in HSET
2010-03-14  antirezmax zipmap entries and max zipmap value parameters...
2010-03-14  antirezHDEL and some improvement in DEBUG OBJECT command
2010-03-14  antirezAppend only file support for hashes
2010-03-12  antirezA minor fix and a few debug messages removed
2010-03-12  antirezApplied the replication bug patch provided by Jeremy...
2010-03-11  antirezFix for HGET against non Hash type, debug messages...
2010-03-09  Pieter Noordhuisfix: use zmalloc instead of malloc
2010-03-09  antirezMerged zsetops branch from Pietern
2010-03-09  antirezMerged ZREMBYRANK from Pietern
2010-03-09  antirezMerged ZREVRANK from Pietern
2010-03-09  Pieter Noordhuisuse a struct to store both a dict and its weight for...
2010-03-09  antirezHash auto conversion from zipmap to hash table, type...
2010-03-09  Pieter Noordhuisreplaced ZMERGE by ZUNION and ZINTER. note: key preload...
2010-03-08  antirezHashes saving / fixes
2010-03-08  Pieter Noordhuisuse ZMERGE as starting point
2010-03-07  antirezHSET fixes, now the new pointer is stored back in the...
2010-03-07  Pieter Noordhuisadded ZREVRANK
2010-03-06  antirezFix for replicaiton with over 2GB dump file initial...
2010-03-06  antirezfirst implementation of HSET/HSET. More work needed
2010-03-05  antirezzipmaps functions to get, iterate, test for existence...
2010-03-04  Pieter Noordhuismoved code to delete a single node from a zset to a...
2010-03-04  Pieter Noordhuisrename zslDeleteRange to zslDeleteRangeByScore (to...
2010-03-04  Pieter Noordhuisuse 1-based rank across zsl*Rank functions consistently
2010-03-04  Pieter Noordhuisimplemented ZREMBYRANK
2010-03-04  antirezA fix for initialization of augmented skip lists
2010-03-04  antirezA fix for an invalid access when VM is disabled
2010-03-04  antirezMerge branch 'zsl-get-rank' of git://github.com/pietern...
2010-03-04  Pieter Noordhuismerged memory reduction patch
2010-03-04  antirezNow list push commands return the length of the new...
2010-03-04  Pieter Noordhuisfirst check if starting point is trivial (head or tail...
2010-03-04  Pieter Noordhuisuse rank to find starting point for ZRANGE and ZREVRANGE
2010-03-04  Pieter Noordhuislookup rank of a zset entry in a different function
2010-03-04  antirezSUBSTR fix for integer encoded vals
2010-03-04  Pieter Noordhuisfix ZRANK (realize that rank is 1-based due to the...
2010-03-03  antirezinitial implementation of SUBSTR
2010-03-03  Pieter Noordhuisuse less memory as element->span[0] will always be...
2010-03-03  Pieter Noordhuisrank is very unlikely to overflow integer range
2010-03-03  Pieter Noordhuisx->backward never equals zsl->header
2010-03-03  Pieter Noordhuisinitial implementation for augmented zsets and the...
2010-03-03  antirezMerge remote branch 'djanowski/interactive'
2010-03-02  antirezminor fix for a Linux warning
2010-03-01  antirezBetter to increment the version minor number when a...
2010-03-01  antirezFixed a subtle VM bug... was not flushing the buffer...
next