1. 23 3月, 2015 5 次提交
  2. 22 3月, 2015 6 次提交
  3. 21 3月, 2015 2 次提交
    • A
      Fix typo in beforeSleep() comment. · 2d34ec60
      antirez 提交于
      2d34ec60
    • A
      Net: clientsArePaused() should not touch blocked clients. · 2d7d75ad
      antirez 提交于
      When the list of unblocked clients were processed, btype was set to
      blocking type none, but the client remained flagged with REDIS_BLOCKED.
      When timeout is reached (or when the client disconnects), unblocking it
      will trigger an assertion.
      
      There is no need to process pending requests from blocked clients, so
      now clientsArePaused() just avoid touching blocked clients.
      
      Close #2467.
      2d7d75ad
  4. 20 3月, 2015 3 次提交
    • A
      Redis 2.9.105 (3.0.0 Release Candidate 5) · 8dac5c8b
      antirez 提交于
      8dac5c8b
    • A
      Cluster: better cluster state transiction handling. · 62893f5b
      antirez 提交于
      Before we relied on the global cluster state to make sure all the hash
      slots are linked to some node, when getNodeByQuery() is called. So
      finding the hash slot unbound was checked with an assertion. However
      this is fragile. The cluster state is often updated in the
      clusterBeforeSleep() function, and not ASAP on state change, so it may
      happen to process clients with a cluster state that is 'ok' but yet
      certain hash slots set to NULL.
      
      With this commit the condition is also checked in getNodeByQuery() and
      reported with a identical error code of -CLUSTERDOWN but slightly
      different error message so that we have more debugging clue in the
      future.
      
      Root cause of issue #2288.
      62893f5b
    • A
      Cluster: move clusterBeforeSleep() call before unblocked clients processing. · 585f68ac
      antirez 提交于
      Related to issue #2288.
      585f68ac
  5. 18 3月, 2015 11 次提交
  6. 14 3月, 2015 1 次提交
    • L
      Support CLIENT commands in Redis Sentinel · b10c2b7b
      Leandro López (inkel) 提交于
      When trying to debug sentinel connections or max connections errors it
      would be very useful to have the ability to see the list of connected
      clients to a running sentinel. At the same time it would be very helpful
      to be able to name each sentinel connection or kill offending clients.
      
      This commits adds the already defined CLIENT commands back to Redis
      Sentinel.
      b10c2b7b
  7. 08 3月, 2015 1 次提交
  8. 05 3月, 2015 1 次提交
    • A
      Fix iterator for issue #2438. · 45ff739c
      antirez 提交于
      Itereator misuse due to analyzeLatencyForEvent() accessing the
      dictionary during the iteration, without the iterator being
      reclared as safe.
      45ff739c
  9. 28 2月, 2015 1 次提交
  10. 26 2月, 2015 3 次提交
  11. 13 2月, 2015 2 次提交
  12. 12 2月, 2015 4 次提交