summaryrefslogtreecommitdiff
path: root/src/replication.c
Commit message (Expand)AuthorAgeFilesLines
* Close connection with timedout slaves.antirez2013-05-271-0/+27
* Send ACK to master once every second.antirez2013-05-271-0/+4
* Don't ACK the master after every command.antirez2013-05-271-0/+17
* Make sure that REPLCONF ACK really has no return value.antirez2013-05-251-0/+1
* REPLCONF ACK command.antirez2013-05-251-0/+13
* Cluster: SLAVEOF command not allowed in cluster mode.antirez2013-03-051-0/+9
* Make sure replicationSetMaster() works when ip argument is not an sds.antirez2013-03-041-1/+1
* SLAVEOF command refactored into a proper API.antirez2013-03-041-15/+26
* Use GCC printf format attribute for redisLog().antirez2013-02-271-3/+4
* PSYNC: another change to unexpected reply from PSYNC.antirez2013-02-131-4/+1
* PSYNC: More robust handling of unexpected reply to PSYNC.antirez2013-02-131-0/+8
* Replication: more strict error checking for master PING reply.antirez2013-02-121-5/+10
* Replication: added new stats counting full and partial resynchronizations.antirez2013-02-121-2/+17
* PSYNC: debugging printf() calls are now logs at DEBUG level.antirez2013-02-121-9/+14
* Remove harmless warning in slaveTryPartialResynchronization().antirez2013-02-121-1/+1
* PSYNC: don't use the client buffer to send +CONTINUE and +FULLRESYNC.antirez2013-02-121-5/+17
* SYNC not allowed with pending data on the static output buffer.antirez2013-02-121-2/+2
* Log the unexpected string received in place of the SYNC payload length.antirez2013-02-121-1/+1
* After SLAVEOF <newslave> don't allow chained slaves to PSYNC.antirez2013-02-121-1/+2
* PSYNC: work in progress, preview #2, rebased to unstable.antirez2013-02-121-45/+606
* Use the new unified protocol to send SELECT to slaves.antirez2013-02-121-1/+7
* Use replicationFeedSlaves() to send PING to slaves.antirez2013-02-121-12/+12
* Emit SELECT to slaves in a centralized way.antirez2013-02-121-3/+3
* Make all WATCHers dirty when the slave reloads the DB.antirez2013-02-081-0/+1
* TCP_NODELAY after SYNC: changes to the implementation.antirez2013-02-051-8/+3
* Turn off TCP_NODELAY on the slave socket after SYNC.charsyam2013-02-051-0/+8
* Fixed many typos.guiquanz2013-01-191-5/+5
* Undo slave-master handshake when SLAVEOF sets a new slave.antirez2013-01-151-7/+23
* Better error reporting when fd event creation fails.antirez2013-01-031-1/+3
* serverCron() frequency is now a runtime parameter (was REDIS_HZ).antirez2012-12-141-1/+1
* BSD license added to every C source and header file.antirez2012-11-081-0/+31
* Unix socket clients properly displayed in MONITOR and CLIENT LIST.antirez2012-11-011-2/+4
* "Timeout receiving bulk data" error message modified.antirez2012-10-041-1/+1
* Fix compilation on FreeBSD. Thanks to @koobs on twitter.antirez2012-09-171-0/+1
* Merge pull request #576 from saj/fix-slave-ping-periodSalvatore Sanfilippo2012-09-051-1/+1
|\
| * Bug fix: slaves being pinged every secondSaj Goonatilleke2012-07-051-1/+1
* | Send an async PING before starting replication with master.antirez2012-09-021-9/+67
* | Incrementally flush RDB on disk while loading it from a master.antirez2012-08-281-9/+27
|/
* Typo in comment.antirez2012-06-271-1/+1
* REPLCONF internal command introduced.antirez2012-06-271-17/+105
* Dead code removed from replication.c.antirez2012-05-241-1/+0
* Remove useless trailing space in SYNC command sent to master.antirez2012-05-021-1/+1
* Spelling: s/synchrnonization/synchronizationDavid Tran2012-04-251-1/+1
* syncio.c calls in replication.c fixed for the new millisecond timeout API.antirez2012-03-311-4/+4
* Purely aesthetic code change.antirez2012-03-301-1/+1
* Fixed a memory leak with replicationJoseph Jang2012-03-301-14/+5
* Fix for slaves chains. Force resync of slaves (simply disconnecting them) wh...antirez2012-03-291-0/+1
* use server.unixtime instead of time(NULL) where possible (cluster.c not check...Premysl Hruby2012-03-271-5/+5
* Better MONITOR output, now includes client ip:port or the lua string if the c...antirez2012-03-071-3/+9
* Ping the slave using the standard protocol instead of the inline one.antirez2012-02-291-1/+1