1. 06 May, 2019 5 commits
  2. 28 Mar, 2019 1 commit
  3. 24 Mar, 2019 1 commit
  4. 21 Mar, 2019 1 commit
  5. 27 Feb, 2019 1 commit
  6. 25 Feb, 2019 5 commits
  7. 21 Feb, 2019 2 commits
  8. 12 Feb, 2019 2 commits
  9. 18 Jan, 2019 1 commit
  10. 15 Jan, 2019 1 commit
  11. 11 Jan, 2019 1 commit
  12. 10 Jan, 2019 1 commit
  13. 09 Jan, 2019 14 commits
  14. 11 Dec, 2018 1 commit
  15. 07 Dec, 2018 1 commit
  16. 04 Dec, 2018 1 commit
  17. 30 Oct, 2018 1 commit
    • antirez's avatar
      asyncCloseClientOnOutputBufferLimitReached(): don't free fake clients. · 0c875c77
      antirez authored
      Fake clients are used in special situations and are not linked to the
      normal clients list, freeing them will always result in Redis crashing
      in one way or the other.
      
      It's not common to send replies to fake clients, but we have one usage
      in the modules API. When a client is blocked, we associate to the
      blocked client object (that is safe to manipulate in a thread), a fake
      client that accumulates replies. So because of this bug there was
      the problem described in issue #5443.
      
      The fix was verified to work with the provided example module. To write
      a regression is very hard and unlikely to be triggered in the future.
      0c875c77