1. 28 4月, 2014 3 次提交
  2. 25 4月, 2014 5 次提交
    • A
      Test: fixed scripting.tcl test false positive. · 93e7a130
      antirez 提交于
      93e7a130
    • A
      Process events with processEventsWhileBlocked() when blocked. · e29d3307
      antirez 提交于
      When we are blocked and a few events a processed from time to time, it
      is smarter to call the event handler a few times in order to handle the
      accept, read, write, close cycle of a client in a single pass, otherwise
      there is too much latency added for clients to receive a reply while the
      server is busy in some way (for example during the DB loading).
      e29d3307
    • A
      Accept multiple clients per iteration. · 3a3458ee
      antirez 提交于
      When the listening sockets readable event is fired, we have the chance
      to accept multiple clients instead of accepting a single one. This makes
      Redis more responsive when there is a mass-connect event (for example
      after the server startup), and in workloads where a connect-disconnect
      pattern is used often, so that multiple clients are waiting to be
      accepted continuously.
      
      As a side effect, this commit makes the LOADING, BUSY, and similar
      errors much faster to deliver to the client, making Redis more
      responsive when there is to return errors to inform the clients that the
      server is blocked in an not interruptible operation.
      3a3458ee
    • A
      AE_ERR -> ANET_ERR in acceptUnixHandler(). · cac4bae1
      antirez 提交于
      No actual changes since the value is the same.
      cac4bae1
    • A
      Redis Cluster test framework skeleton. · c3f85c01
      antirez 提交于
      c3f85c01
  3. 24 4月, 2014 5 次提交
  4. 23 4月, 2014 5 次提交
  5. 22 4月, 2014 3 次提交
  6. 18 4月, 2014 4 次提交
  7. 17 4月, 2014 9 次提交
  8. 16 4月, 2014 4 次提交
  9. 15 4月, 2014 2 次提交