1. 29 Jan, 2020 2 commits
  2. 28 Jan, 2020 2 commits
  3. 27 Jan, 2020 1 commit
  4. 15 Jan, 2020 2 commits
  5. 13 Jan, 2020 8 commits
  6. 10 Jan, 2020 7 commits
  7. 09 Jan, 2020 3 commits
  8. 08 Jan, 2020 6 commits
  9. 07 Jan, 2020 4 commits
  10. 06 Jan, 2020 1 commit
  11. 04 Jan, 2020 1 commit
  12. 01 Jan, 2020 2 commits
    • antirez's avatar
      Fix active expire division by zero. · 0af467d1
      antirez authored
      Likely fix #6723.
      
      This is what happens AFAIK: we enter the main loop where we expire stuff
      until a given percentage of keys is still found to be logically expired.
      There are however other potential exit conditions.
      
      However the "sampled" variable is not always incremented inside the
      loop, because we may found no valid slot as we scan the hash table, but
      just NULLs ad dict entries. So when the do/while loop condition is
      triggered at the end, we do (expired*100/sampled), dividing by zero if
      we sampled 0 keys.
      0af467d1
    • John Sully's avatar
      e5565a79
  13. 31 Dec, 2019 1 commit