summaryrefslogtreecommitdiff
path: root/src/aof.c
Commit message (Expand)AuthorAgeFilesLines
* Fix typo in aofRewriteBufferAppend() comment.antirez2014-01-141-1/+1
* Fixed grammar: before H the article is a, not an.antirez2013-12-051-1/+1
* BLPOP blocking code refactored to be generic & reusable.antirez2013-12-031-0/+1
* Use printf %zu specifier to print private_dirty.antirez2013-08-201-1/+1
* Introduction of a new string encoding: EMBSTRantirez2013-07-221-1/+1
* Binding multiple IPs done properly with multiple sockets.antirez2013-07-051-2/+1
* Use the RSC to replicate EVALSHA unmodified.antirez2013-06-241-0/+1
* Fix AOF bug: expire could be removed from key on AOF rewrite.charsyam2013-05-021-2/+3
* Config option to turn AOF rewrite incremental fsync on/off.antirez2013-04-241-1/+2
* AOF: sync data on disk every 32MB when rewriting.antirez2013-04-241-0/+1
* Use GCC printf format attribute for redisLog().antirez2013-02-271-1/+1
* Set process name in ps output to make operations safer.antirez2013-02-261-0/+1
* Fix decrRefCount() prototype from void to robj pointer.antirez2013-01-281-1/+1
* Whitelist SIGUSR1 to avoid auto-triggering errors.antirez2013-01-191-1/+1
* Fixed many typos.guiquanz2013-01-191-1/+1
* CLIENT GETNAME and CLIENT SETNAME introduced.antirez2013-01-151-0/+1
* Children creating AOF or RDB files now report memory used by COW.antirez2012-11-191-0/+7
* BSD license added to every C source and header file.antirez2012-11-081-0/+29
* Merge pull request #587 from saj/truncate-short-write-from-aofSalvatore Sanfilippo2012-07-271-0/+7
|\
| * Truncate short write from the AOFSaj Goonatilleke2012-07-181-0/+7
* | New in INFO: aof_last_bgrewrite_statusSaj Goonatilleke2012-07-181-0/+6
|/
* Four new persistence fields in INFO. A few renamed.antirez2012-05-251-0/+4
* Allow an AOF rewrite buffer > 2GB (Fix for issue #504).antirez2012-05-241-16/+116
* Use comments to split aof.c into sections.antirez2012-05-211-0/+14
* For coverage testing use exit() instead of _exit() when termiating saving chi...antirez2012-04-071-2/+2
* use server.unixtime instead of time(NULL) where possible (cluster.c not check...Premysl Hruby2012-03-271-1/+1
* New INFO field aof_delayed_fsync introduced.antirez2012-03-251-0/+1
* Reclaim space from the client querybuf if needed.antirez2012-03-141-0/+1
* Added a top-function comment to rioWriteHashIteratorCursor() to better specif...antirez2012-03-101-0/+6
* Merge conflicts resolved.antirez2012-03-091-37/+39
|\
| * Encode small hashes with a ziplistPieter Noordhuis2012-01-021-37/+39
* | lenght -> lengthantirez2012-01-241-1/+1
* | Implementation of the internals that make possible to terminate clients overc...antirez2012-01-231-0/+1
* | Track the length of the client pending output buffers (still to transfer) in ...antirez2012-01-171-0/+1
|/
* sligthly better AOF related logsantirez2011-12-211-5/+10
* Log when the child rewriting the AOF is killed by stopAppendOnly()antirez2011-12-211-0/+2
* some RDB server struct fields renamed.antirez2011-12-211-2/+2
* more AOF server struct fields renamed.antirez2011-12-211-54/+54
* AOF fileds in the global server state, and define names, renamed with more co...antirez2011-12-211-44/+44
* AOF refactoring, now with three states: ON, OFF, WAIT_REWRITE.antirez2011-12-211-22/+15
* startAppendOnly() fixed to set server.appendonly to 0 if the start failed.antirez2011-12-201-2/+1
* Fix: when aof_write_rewrite is true don't append on the AOF buffer but accumu...antirez2011-12-151-9/+10
* AOF fixes in the context of replicaiton (when AOF is used by slave) and CONFI...antirez2011-12-151-3/+21
* Hash type AOF rewrite using HMSET.antirez2011-12-131-31/+51
* Sorted Set type AOF rewrite using variadic ZADD.antirez2011-12-131-50/+70
* Set type AOF rewrite using variadic SADD.antirez2011-12-131-24/+50
* List type AOF rewrite using variadic RPUSH for the linked list encoding.antirez2011-12-131-3/+9
* Lists AOF rewrite using variadic RPUSH (work in progress)antirez2011-12-131-38/+56
* Fixed issues with expire introduced with latest millisecond resolution featur...antirez2011-11-121-2/+2
* high resolution expires API modified to use separated commands. AOF transatio...antirez2011-11-101-16/+36