1. 05 Nov, 2013 6 commits
  2. 31 Oct, 2013 2 commits
  3. 28 Oct, 2013 2 commits
  4. 25 Oct, 2013 11 commits
  5. 09 Oct, 2013 1 commit
  6. 27 Jun, 2013 1 commit
  7. 28 Mar, 2013 1 commit
  8. 26 Mar, 2013 1 commit
    • antirez's avatar
      TTL / PTTL commands: two bugs fixed. · 873f328f
      antirez authored
      This commit fixes two corner cases for the TTL command.
      
      1) When the key was already logically expired (expire time older
      than current time) the command returned -1 instead of -2.
      
      2) When the key was existing and the expire was found to be exactly 0
      (the key was just about to expire), the command reported -1 (that is, no
      expire) instead of a TTL of zero (that is, about to expire).
      873f328f
  9. 21 Mar, 2013 1 commit
  10. 25 Feb, 2013 3 commits
  11. 22 Feb, 2013 2 commits
  12. 14 Feb, 2013 1 commit
  13. 12 Feb, 2013 1 commit
  14. 28 Jan, 2013 5 commits
  15. 19 Jan, 2013 2 commits
    • antirez's avatar
      Whitelist SIGUSR1 to avoid auto-triggering errors. · 79a0ef62
      antirez authored
      This commit fixes issue #875 that was caused by the following events:
      
      1) There is an active child doing BGSAVE.
      2) flushall is called (or any other condition that makes Redis killing
      the saving child process).
      3) An error is sensed by Redis as the child exited with an error (killed
      by a singal), that stops accepting write commands until a BGSAVE happens
      to be executed with success.
      
      Whitelisting SIGUSR1 and making sure Redis always uses this signal in
      order to kill its own children fixes the issue.
      79a0ef62
    • guiquanz's avatar
      Fixed many typos. · 9d09ce39
      guiquanz authored
      9d09ce39