1. 29 May, 2013 1 commit
    • antirez's avatar
      Slaves list in INFO output: lag added, format changed. · 37c29e03
      antirez authored
      There is a new 'lag' information in the list of slaves, in the
      "replication" section of the INFO output.
      
      Also the format was changed in a backward incompatible way in order to
      make it more easy to parse if new fields are added in the future, as the
      new format is comma separated but has named fields (no longer positional
      fields).
      37c29e03
  2. 28 May, 2013 1 commit
  3. 27 May, 2013 8 commits
  4. 24 May, 2013 3 commits
  5. 18 May, 2013 1 commit
  6. 15 May, 2013 9 commits
  7. 14 May, 2013 5 commits
  8. 13 May, 2013 4 commits
  9. 09 May, 2013 1 commit
  10. 08 May, 2013 2 commits
    • antirez's avatar
      Version bumped to 2.9.10 · a7486a65
      antirez authored
      a7486a65
    • antirez's avatar
      Revert "use long long instead of size_t make it more safe" · 0ae1b5b0
      antirez authored
      This reverts commit 2c75f2cf.
      
      After further analysis, it is very unlikely that we'll raise the
      string size limit to > 512MB, and at the same time such big strings
      will be used in 32 bit systems.
      
      Better to revert to size_t so that 32 bit processors will not be
      forced to use a 64 bit counter in normal operations, that is currently
      completely useless.
      0ae1b5b0
  11. 07 May, 2013 2 commits
  12. 03 May, 2013 3 commits
    • antirez's avatar
      Cluster: link reconnection on delayed PONG reply. · 5c9f6d4f
      antirez authored
      When the PONG delay is half the cluster node timeout, the link gets
      disconnected (and later automatically reconnected) in order to ensure
      that it's not just a dead connection issue.
      
      However this operation is only performed if the link is old enough, in
      order to avoid to disconnect the same link again and again (and among
      the other problems, never receive the PONG because of that).
      
      Note: when the link is reconnected, the 'ping_sent' field is not updated
      even if a new ping is sent using the new connection, so we can still
      reliably detect a node ping timeout.
      5c9f6d4f
    • antirez's avatar
      1315b9f2
    • antirez's avatar
      Cluster: PING/PONG handling redesigned. · ae717310
      antirez authored
      ae717310