summaryrefslogtreecommitdiff
path: root/src/aof.c
Commit message (Expand)AuthorAgeFilesLines
* RDMF: More consistent define names.antirez2015-07-271-90/+90
* RDMF: REDIS_OK REDIS_ERR -> C_OK C_ERR.antirez2015-07-261-30/+30
* RDMF: redisAssert -> serverAssert.antirez2015-07-261-7/+7
* RDMF: OBJ_ macros for object related stuff.antirez2015-07-261-17/+17
* RDMF: use client instead of redisClient, like Disque.antirez2015-07-261-6/+6
* RDMF: redisLog -> serverLog.antirez2015-07-261-43/+43
* RDMF (Redis/Disque merge friendlyness) refactoring WIP 1.antirez2015-07-261-1/+1
* bugfix: errno might change before loggingYongyue Sun2015-07-171-1/+1
* AOF rewrite: set iterator var to NULL when freed.antirez2015-01-211-0/+1
* Add quicklist implementationMatt Stancliff2015-01-021-33/+10
* Clean up text throughout projectMatt Stancliff2014-09-291-2/+2
* Fix incorrect commentszionwu2014-09-291-1/+1
* Fix many small typosJan-Erik Rediger2014-09-291-12/+12
* Seek at the end of AOF after truncate call.antirez2014-09-161-3/+10
* On AOF end of file, truncate the AOF to last valid command.antirez2014-09-161-3/+16
* Correct cleanup when aborting AOF loading.antirez2014-09-081-8/+29
* AOF ability to load truncated files.antirez2014-09-081-3/+11
* AOF loading: split handling of format errors from unexpected EOF.antirez2014-09-081-7/+10
* Remove warnings and improve integer sign correctness.antirez2014-08-131-1/+8
* LATENCY DOCTOR first implementation complete.antirez2014-07-081-0/+1
* Better "final read from parent" algorithm in rewriteAppendOnlyFile*(.antirez2014-07-051-8/+11
* Log AOF diff sizes in MBs instead of bytes.antirez2014-07-051-3/+3
* aofChildWriteDiffData() better handling of free blocks.antirez2014-07-051-4/+7
* Fine tuning of aofReadDiffFromParent() calls trigger.antirez2014-07-041-4/+27
* Use amount of I/O not ops to trigger aofReadDiffFromParent().antirez2014-07-041-2/+5
* aofChildWriteDiffData(): write as much as possible.antirez2014-07-041-11/+15
* Handle write failure in AOF parent -> child ACK.antirez2014-07-041-1/+8
* Use a timeout when reading parent ack from AOF child.antirez2014-07-041-2/+8
* Send AOF diffs from parent to child to improve latency.antirez2014-07-041-6/+141
* Use fsync instead of aof_fsync in final AOF sync.antirez2014-07-041-1/+1
* Fixed conditional for aof-write-pending-fsync latency event selection.antirez2014-07-021-1/+1
* Latency monitor: specialize delayed aof writes events.antirez2014-07-021-4/+16
* Latency monitor: more hooks around the code.antirez2014-07-011-0/+20
* CLIENT LIST speedup via peerid caching + smart allocation.antirez2014-04-281-0/+1
* Process events with processEventsWhileBlocked() when blocked.antirez2014-04-241-1/+1
* Fix data loss when save AOF/RDB with no free spaceMatt Stancliff2014-03-241-3/+3
* AOF: don't abort on write errors unless fsync is 'always'.antirez2014-02-121-15/+65
* 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