1. 10 Apr, 2014 1 commit
  2. 03 Apr, 2014 1 commit
  3. 27 Feb, 2014 4 commits
  4. 13 Feb, 2014 1 commit
  5. 09 Jan, 2014 1 commit
  6. 08 Jan, 2014 1 commit
  7. 13 Dec, 2013 1 commit
  8. 08 Dec, 2013 1 commit
  9. 25 Nov, 2013 1 commit
  10. 05 Nov, 2013 1 commit
  11. 31 Oct, 2013 2 commits
  12. 30 Oct, 2013 6 commits
  13. 25 Oct, 2013 2 commits
  14. 30 Aug, 2013 1 commit
  15. 29 Aug, 2013 1 commit
  16. 22 Jul, 2013 1 commit
  17. 19 Jun, 2013 1 commit
  18. 28 Mar, 2013 3 commits
  19. 27 Mar, 2013 2 commits
  20. 25 Mar, 2013 1 commit
  21. 12 Feb, 2013 2 commits
  22. 28 Jan, 2013 1 commit
  23. 21 Jan, 2013 1 commit
    • antirez's avatar
      UNSUBSCRIBE and PUNSUBSCRIBE: always provide a reply. · 2039f1a3
      antirez authored
      UNSUBSCRIBE and PUNSUBSCRIBE commands are designed to mass-unsubscribe
      the client respectively all the channels and patters if called without
      arguments.
      
      However when these functions are called without arguments, but there are
      no channels or patters we are subscribed to, the old behavior was to
      don't reply at all.
      
      This behavior is broken, as every command should always reply.
      Also it is possible that we are no longer subscribed to a channels but we
      are subscribed to patters or the other way around, and the client should
      be notified with the correct number of subscriptions.
      
      Also it is not pretty that sometimes we did not receive a reply at all
      in a redis-cli session from these commands, blocking redis-cli trying
      to read the reply.
      
      This fixes issue #714.
      2039f1a3
  24. 19 Jan, 2013 2 commits
    • antirez's avatar
      Slowlog: don't log EXEC but just the executed commands. · 08d200ba
      antirez authored
      The Redis Slow Log always used to log the slow commands executed inside
      a MULTI/EXEC block. However also EXEC was logged at the end, which is
      perfectly useless.
      
      Now EXEC is no longer logged and a test was added to test this behavior.
      
      This fixes issue #759.
      08d200ba
    • guiquanz's avatar
      Fixed many typos. · 9d09ce39
      guiquanz authored
      9d09ce39
  25. 15 Jan, 2013 1 commit