1. 18 Mar, 2015 2 commits
  2. 13 Mar, 2015 1 commit
    • Leandro López (inkel)'s avatar
      Support CLIENT commands in Redis Sentinel · b10c2b7b
      Leandro López (inkel) authored
      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
  3. 08 Mar, 2015 1 commit
  4. 04 Mar, 2015 1 commit
    • antirez's avatar
      Fix iterator for issue #2438. · 45ff739c
      antirez authored
      Itereator misuse due to analyzeLatencyForEvent() accessing the
      dictionary during the iteration, without the iterator being
      reclared as safe.
      45ff739c
  5. 27 Feb, 2015 1 commit
  6. 26 Feb, 2015 1 commit
    • antirez's avatar
      Improvements to PR #2425 · 53659404
      antirez authored
      1. Remove useless "cs" initialization.
      2. Add a "select" var to capture a condition checked multiple times.
      3. Avoid duplication of the same if (!copy) conditional.
      4. Don't increment dirty if copy is given (no deletion is performed),
         otherwise we propagate MIGRATE when not needed.
      53659404
  7. 25 Feb, 2015 1 commit
  8. 13 Feb, 2015 1 commit
  9. 12 Feb, 2015 3 commits
  10. 11 Feb, 2015 13 commits
  11. 10 Feb, 2015 8 commits
  12. 02 Feb, 2015 2 commits
    • mattcollier's avatar
      Update redis-cli.c · 1aed310c
      mattcollier authored
      Code was adding '\n'  (line 521) to the end of NIL values exlusively making csv output inconsistent.  Removed '\n'
      1aed310c
    • mattcollier's avatar
      Update redis-cli.c · 7db39b7f
      mattcollier authored
      Code was adding '\n'  (line 521) to the end of NIL values exlusively making csv output inconsistent.  Removed '\n'
      7db39b7f
  13. 30 Jan, 2015 3 commits
  14. 29 Jan, 2015 2 commits
    • antirez's avatar
      Cluster: initialized not used fileds in gossip section. · f2cd2fcd
      antirez authored
      Otherwise we risk sending not initialized data to other nodes, that may
      contain anything. This was actually not possible only because the
      initialization of the buffer where the cluster packets header is created
      was larger than the 3 gossip sections we use, so the memory was already
      all filled with zeroes by the memset().
      f2cd2fcd
    • antirez's avatar
      Cluster: initialized not used fileds in gossip section. · 2553f6c9
      antirez authored
      Otherwise we risk sending not initialized data to other nodes, that may
      contain anything. This was actually not possible only because the
      initialization of the buffer where the cluster packets header is created
      was larger than the 3 gossip sections we use, so the memory was already
      all filled with zeroes by the memset().
      2553f6c9