1. 26 6月, 2013 1 次提交
  2. 20 6月, 2013 1 次提交
  3. 01 6月, 2013 1 次提交
  4. 31 5月, 2013 1 次提交
  5. 30 5月, 2013 1 次提交
  6. 18 5月, 2013 1 次提交
  7. 15 5月, 2013 18 次提交
  8. 02 5月, 2013 2 次提交
  9. 24 4月, 2013 1 次提交
  10. 26 3月, 2013 1 次提交
    • 一个手艺人's avatar
      Update config.c · 382420ec
      一个手艺人 提交于
      Fix bug in configGetCommand function: get correct masterauth value.
      382420ec
  11. 06 3月, 2013 3 次提交
  12. 26 2月, 2013 1 次提交
  13. 12 2月, 2013 2 次提交
  14. 11 2月, 2013 1 次提交
  15. 05 2月, 2013 2 次提交
    • A
      TCP_NODELAY after SYNC: changes to the implementation. · 5f7dff4d
      antirez 提交于
      5f7dff4d
    • C
      Turn off TCP_NODELAY on the slave socket after SYNC. · 1d80acae
      charsyam 提交于
      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.
      1d80acae
  16. 28 1月, 2013 2 次提交
  17. 19 1月, 2013 1 次提交
    • G
      Fixed many typos. · 1caf0939
      guiquanz 提交于
      Conflicts fixed, mainly because 2.8 has no cluster support / files:
      	00-RELEASENOTES
      	src/cluster.c
      	src/crc16.c
      	src/redis-trib.rb
      	src/redis.h
      1caf0939