1. 15 5月, 2013 8 次提交
  2. 14 5月, 2013 5 次提交
  3. 13 5月, 2013 3 次提交
  4. 02 5月, 2013 2 次提交
  5. 24 4月, 2013 1 次提交
  6. 09 4月, 2013 1 次提交
  7. 04 4月, 2013 2 次提交
  8. 14 3月, 2013 1 次提交
    • 一个手艺人's avatar
      Update config.c · 79a13b46
      一个手艺人 提交于
      Fix bug in configGetCommand function: get correct masterauth value.
      79a13b46
  9. 06 3月, 2013 3 次提交
  10. 05 3月, 2013 1 次提交
  11. 26 2月, 2013 1 次提交
  12. 14 2月, 2013 2 次提交
  13. 12 2月, 2013 2 次提交
  14. 08 2月, 2013 1 次提交
  15. 05 2月, 2013 2 次提交
    • A
      TCP_NODELAY after SYNC: changes to the implementation. · b70b459b
      antirez 提交于
      b70b459b
    • C
      Turn off TCP_NODELAY on the slave socket after SYNC. · c85647f3
      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.
      c85647f3
  16. 28 1月, 2013 2 次提交
  17. 19 1月, 2013 1 次提交
  18. 15 12月, 2012 1 次提交
    • A
      serverCron() frequency is now a runtime parameter (was REDIS_HZ). · f1481d4a
      antirez 提交于
      REDIS_HZ is the frequency our serverCron() function is called with.
      A more frequent call to this function results into less latency when the
      server is trying to handle very expansive background operations like
      mass expires of a lot of keys at the same time.
      
      Redis 2.4 used to have an HZ of 10. This was good enough with almost
      every setup, but the incremental key expiration algorithm was working a
      bit better under *extreme* pressure when HZ was set to 100 for Redis
      2.6.
      
      However for most users a latency spike of 30 milliseconds when million
      of keys are expiring at the same time is acceptable, on the other hand a
      default HZ of 100 in Redis 2.6 was causing idle instances to use some
      CPU time compared to Redis 2.4. The CPU usage was in the order of 0.3%
      for an idle instance, however this is a shame as more energy is consumed
      by the server, if not important resources.
      
      This commit introduces HZ as a runtime parameter, that can be queried by
      INFO or CONFIG GET, and can be modified with CONFIG SET. At the same
      time the default frequency is set back to 10.
      
      In this way we default to a sane value of 10, but allows users to
      easily switch to values up to 500 for near real-time applications if
      needed and if they are willing to pay this small CPU usage penalty.
      f1481d4a
  19. 09 11月, 2012 1 次提交