1. 10 Dec, 2013 1 commit
    • antirez's avatar
      dict.c: added optional callback to dictEmpty(). · 2eb781b3
      antirez authored
      Redis hash table implementation has many non-blocking features like
      incremental rehashing, however while deleting a large hash table there
      was no way to have a callback called to do some incremental work.
      
      This commit adds this support, as an optiona callback argument to
      dictEmpty() that is currently called at a fixed interval (one time every
      65k deletions).
      2eb781b3
  2. 05 Dec, 2013 1 commit
  3. 06 Nov, 2013 1 commit
  4. 05 Nov, 2013 6 commits
  5. 31 Oct, 2013 2 commits
  6. 28 Oct, 2013 2 commits
  7. 25 Oct, 2013 11 commits
  8. 09 Oct, 2013 1 commit
  9. 27 Jun, 2013 1 commit
  10. 28 Mar, 2013 1 commit
  11. 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
  12. 21 Mar, 2013 1 commit
  13. 25 Feb, 2013 3 commits
  14. 22 Feb, 2013 2 commits
  15. 14 Feb, 2013 1 commit
  16. 12 Feb, 2013 1 commit
  17. 28 Jan, 2013 4 commits