]> git.saurik.com Git - redis.git/history - redis.c
fix ZRANK (realize that rank is 1-based due to the skip list header)
[redis.git] / redis.c
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 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...
2010-03-01  antirezKEYS now returns a multi bulk reply
2010-03-01  Damian JanowskiAdd DISCARD command to discard queued MULTI commands.
2010-03-01  antirezSwappability bug due to a typo fixed thanks to code...
2010-02-27  antirezBug #169 fixed (BLOP/BRPOP interrupted connections...
2010-02-22  antirezFixed 32bit make target to work on Linux out of the box
2010-02-19  antirezA problem with replication with multiple slaves connect...
2010-02-09  antirezVM now is able to block clients on swapped keys for...
2010-02-07  antirezZRANGEBYSCORE now supports open intervals, prefixing...
2010-02-07  antirezWITHSCORES in ZRANGEBYSCORE thanks to Sam Hendley
2010-02-06  Sam HendleyAdded "withscores" option to zrangebyscore command...
2010-02-06  antirezDEBUG OBJECT provide info about serialized object lengt...
2010-02-06  antirezmulti bulk requests in redis-benchmark, default fsync...
2010-02-04  antirezAPPEND command
2010-02-02  antirezFaster version of the function hashing possibly encoded...
2010-02-02  antirezfaster Set loading time from .rdb file resizing the...
2010-02-02  antirezLog time taken to load the DB at startup, in seconds
2010-01-31  antirezFixed VM corruption due to child fclosing the VM file...
2010-01-28  antirezloading side of the threaded VM
2010-01-23  antirezFixed memory human style memory reporting, removed...
2010-01-22  antirezVM tuning thanks to redis-stat vmstat. Now it performs...
2010-01-21  antirezREDIS_MAX_COMPLETED_JOBS_PROCESSED is now in percentage...
2010-01-20  antirezfixed a deadlock caused by too much finished processes...
2010-01-19  antirezremoved a bug in the function to cancel an I/O job
2010-01-16  antirezremoved support for REDIS_HELGRIND_FRIENDLY since Helgr...
2010-01-15  antirezCreate swap file only if not exists
2010-01-15  antirezI hate warnings
2010-01-15  antirezfixed a minor memory leak in configuration file parsing
2010-01-15  antirezminor fix
2010-01-15  antirezsupport for named VM swap file. Fixed a few important...
2010-01-15  antirezuseless debugging messages removed
2010-01-15  antirezthread safe zmalloc used memory counter
2010-01-15  antirezA define to make Redis more helgrind friendly
2010-01-15  antirezremoved a few races from threaded VM
2010-01-14  antirezFixed a never experienced, theoretical bug that can...
2010-01-14  antirezSet the new threads stack size to a LZF friendly amount
2010-01-13  antirezaccess to already freed job structure fixed by statemen...
2010-01-13  antirezremoved a useless debugging message
2010-01-13  antirezWait zero active threads condition before to fork(...
2010-01-13  antirezlist API is now thread safe
2010-01-13  antirezminor TODO and debugging info changes
2010-01-12  antirezsupport for blocking VM in config file
2010-01-12  antirezmore non blocking VM changes
2010-01-12  antireza few more stuff in INFO about VM. Test #11 changed...
2010-01-12  antirezAdded a define to configure how many completed IO jobs...
2010-01-12  antirezFixed a bug in the IO Job canceling funtion
2010-01-11  antirezmore steps towards a working non blocking VM
2010-01-11  antirezconverted random printfs in debug logs
2010-01-11  antirezremoved a bug introduced with non blocking VM
2010-01-11  antireza few non blocking VM bugs fixed
2010-01-11  antirezMore work on non-blocking VM. Should work in a few...
2010-01-11  antirezMore threaded I/O VM work + Redis init script
2010-01-10  antirezmore work on VM threaded I/O. Still nothing of usable
2010-01-09  antireznon-blocking VM data structures, just a start
2010-01-08  antirezused_memory_human added to INFO output. Human readable...
2010-01-07  antirezNow DEBUG OBJECT plays well with swapped out objects
2010-01-07  antirezfflush VM swap file after object swapping
2010-01-07  antirezVM now swaps objects out while loading datasets not...
2010-01-07  antirezadded process id information in INFO
2010-01-07  antireza new default redis.conf
2010-01-07  antirezVM stats in INFO command
2010-01-06  antirezIntroduced a new log verbosity level, so now DEBUG...
2010-01-06  antirezfixed a bug in bgsave when VM is off but still it was...
2010-01-06  antirezconverted a few calls to assert() => redisAssert()...
2010-01-06  antirezBGREWRITEAOF now works with swapping on
2010-01-05  antirezA first fix for SET key overwrite
2010-01-05  antirezSAVE now works with VM
2010-01-05  antirezswapping algorithm a bit more aggressive under low...
2010-01-05  antirezbasic VM mostly working!
2010-01-05  antirezNew object field (one of the unused bytes) to hold...
2010-01-05  antirezVM internals bugfixes, set 1
2010-01-05  antirezload key from swap on key lookup
2010-01-05  antirezmore object-level VM primitives
2010-01-05  antirezRedis objects swapping / loading
2010-01-05  antirezrdbLoadObject() as a separated function to load objects...
2010-01-05  antirezVM low level pages handling
2010-01-04  antirezvm swap file creation, and some basic configuration
2010-01-04  antirezversion marked 1.3.2
2010-01-04  antirezsaving code refactored a bit, added a function returnin...
2010-01-02  antirezNow the PUSH side of RPOPLPUSH is able to unblock clien...
2010-01-02  antirezVersion is now 1.3.1
2010-01-02  antirezNew vararg BLPOP able to block against multiple keys
2009-12-30  antirezfixed a problem with BLPOP timeout of zero, now it...
2009-12-29  antirezBLPOP timeouts implemented
2009-12-29  antirezfirst working implementation of BLPOP and BRPOP, still...
2009-12-29  antireza few more fixes, still broken
2009-12-29  antirezFirst fix, still broken
2009-12-29  antirezminor fix for Linux 64 bit
2009-12-29  antireznot yet working BLPOP implementation
2009-12-28  antirezAOFSYNC removed, got a better idea...
2009-12-28  antirezAOFSYNC command implemented
2009-12-27  antirezVersion changed to 1.3.0, welcome to the new unstable
next