1. 02 7月, 2013 1 次提交
  2. 01 7月, 2013 1 次提交
  3. 26 6月, 2013 1 次提交
  4. 20 6月, 2013 1 次提交
  5. 01 6月, 2013 1 次提交
  6. 31 5月, 2013 1 次提交
  7. 30 5月, 2013 1 次提交
  8. 18 5月, 2013 1 次提交
  9. 15 5月, 2013 18 次提交
  10. 02 5月, 2013 2 次提交
  11. 24 4月, 2013 1 次提交
  12. 26 3月, 2013 1 次提交
    • 一个手艺人's avatar
      Update config.c · 382420ec
      一个手艺人 提交于
      Fix bug in configGetCommand function: get correct masterauth value.
      382420ec
  13. 06 3月, 2013 3 次提交
  14. 26 2月, 2013 1 次提交
  15. 12 2月, 2013 2 次提交
  16. 11 2月, 2013 1 次提交
  17. 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
  18. 28 1月, 2013 1 次提交
    • A
      Keyspace events: it is now possible to select subclasses of events. · b9bc4f91
      antirez 提交于
      When keyspace events are enabled, the overhead is not sever but
      noticeable, so this commit introduces the ability to select subclasses
      of events in order to avoid to generate events the user is not
      interested in.
      
      The events can be selected using redis.conf or CONFIG SET / GET.
      b9bc4f91