1. 31 May, 2013 1 commit
  2. 30 May, 2013 2 commits
  3. 18 May, 2013 1 commit
  4. 15 May, 2013 9 commits
  5. 14 May, 2013 4 commits
  6. 13 May, 2013 4 commits
  7. 02 May, 2013 2 commits
  8. 24 Apr, 2013 1 commit
  9. 09 Apr, 2013 1 commit
  10. 04 Apr, 2013 2 commits
  11. 14 Mar, 2013 1 commit
    • NanXiao's avatar
      Update config.c · 79a13b46
      NanXiao authored
      Fix bug in configGetCommand function: get correct masterauth value.
      79a13b46
  12. 06 Mar, 2013 3 commits
  13. 05 Mar, 2013 1 commit
  14. 25 Feb, 2013 1 commit
  15. 14 Feb, 2013 2 commits
  16. 12 Feb, 2013 2 commits
  17. 08 Feb, 2013 1 commit
  18. 05 Feb, 2013 2 commits
    • antirez's avatar
      b70b459b
    • charsyam's avatar
      Turn off TCP_NODELAY on the slave socket after SYNC. · c85647f3
      charsyam authored
      Further details from @antirez:
      
      It was reported by @StopForumSpam on Twitter that the Redis replication
      link was strangely using multiple TCP packets for multiple commands.
      This wastes a lot of bandwidth and is due to the TCP_NODELAY option we
      enable on the socket after accepting a new connection.
      
      However the master -> slave channel is a one-way channel since Redis
      replication is asynchronous, so there is no point in trying to reduce
      the latency, we should aim to reduce the bandwidth. For this reason this
      commit introduces the ability to disable the nagle algorithm on the
      socket after a successful SYNC.
      
      This feature is off by default because the delay can be up to 40
      milliseconds with normally configured Linux kernels.
      c85647f3