]> git.saurik.com Git - redis.git/history - redis.c
Create swap file only if not exists
[redis.git] / redis.c
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
2009-12-27  antirezNow MULTI returns +OK as well
2009-12-27  antirezMULTI/EXEC first implementation
2009-12-24  antirezFixed a minor bug in GETSET, now the SET part is not...
2009-12-23  antirezversion is now 1.1.94
2009-12-23  antirezAdd the command name in the unknown command error message.
2009-12-22  antirezZRANGE, ZREVRANGE now support WITHSCORES options
2009-12-18  antirezNow SORT returns an empty bulk reply if the key does...
2009-12-18  antirezSHUTDOWN now does the right thing when append only...
2009-12-18  antirezAdded a missing server.dirty increment in a non critica...
2009-12-18  antirezLTRIM now returns +OK against non existing keys. More...
2009-12-16  antirezLZF compression re-enabled by default, but with INIT_HT...
2009-12-16  antirezlzf compression switched off by default now, with confi...
2009-12-16  antirezRegression for epoll bug in redis-test.tcl, version...
2009-12-15  antirezversion is now 1.1.92
2009-12-15  antirezTwo important fixes to append only file: zero length...
2009-12-15  antirezdebug loadaof implemented in order to add more consiste...
2009-12-15  antirezAdded a new test able to stress a lot the snapshotting...
2009-12-15  antirezUnified handling of empty queries with normal queries.
2009-12-15  antirezFixed some subtle bug in the command processing code...
2009-12-15  antirezFixed issue #121
2009-12-13  antirezChanged the reply of BGSAVE and BGREWRITEAOF from ...
2009-12-13  antirezSet the master->slave logical client as authenticated...
2009-12-12  antirezbgrewriteaof_in_progress added to INFO
2009-12-11  antirezsome change to redis-sha1.rb utility to make it more...
2009-12-10  antireza bit more verbose -ERR wrong number o arguments error...
2009-12-10  antirezTODO change and minor SETNX optimization
2009-12-06  antirezin rdbLoadDoubleValue now the buffer is nul terminated...
2009-12-06  antirezprintf format warnings fixed by casting
2009-12-06  antirezRegression tests for SETNX and MSETNX bugs added
2009-12-06  antirezSETNX and MSETNX now respect the delete-on-write operat...
2009-12-05  antirezFixed daemonization when using kqueue/kevent. Now the...
2009-12-05  antirezmore HTML doc changes
2009-12-05  antirezuse __attribute__ format in sdscatprintf() when the...
next