1. 29 Sep, 2014 24 commits
  2. 26 Sep, 2014 1 commit
  3. 25 Sep, 2014 1 commit
    • antirez's avatar
      DEBUG POPULATE two args form implemented. · d4222e6b
      antirez authored
      The old DEBUG POPULATE form for automatic creation of test keys is:
      
          DEBUG POPULATE <count>
      
      Now an additional form is available:
      
          DEBUG POPULATE <count> <prefix>
      
      When prefix is not specified, it defaults to "key", so the keys are
      named incrementally from key:0 to key:<count-1>. Otherwise the specified
      prefix is used instead of "key".
      
      The command is useful in order to populate different Redis instances
      with key names guaranteed to don't collide. There are other debugging
      uses, for example it is possible to add additional N keys using a count
      of N and a random prefix at every call.
      d4222e6b
  4. 22 Sep, 2014 1 commit
  5. 19 Sep, 2014 7 commits
  6. 18 Sep, 2014 5 commits
  7. 17 Sep, 2014 1 commit
    • antirez's avatar
      Cluster: claim ping_sent time even if we can't connect. · 23744967
      antirez authored
      This fixes a potential bug that was never observed in practice since
      what happens is that the asynchronous connect returns ok (to fail later,
      calling the handler) every time, so a ping is queued, and sent_ping
      happens to always be populated.
      
      Howver technically connect(2) with a non blocking socket may return an
      error synchronously, so before this fix the code was not correct.
      23744967