1. 19 Nov, 2018 5 commits
  2. 08 Nov, 2018 2 commits
  3. 07 Nov, 2018 1 commit
  4. 06 Nov, 2018 7 commits
  5. 05 Nov, 2018 10 commits
  6. 03 Nov, 2018 2 commits
  7. 02 Nov, 2018 1 commit
  8. 31 Oct, 2018 8 commits
  9. 30 Oct, 2018 4 commits
    • David Carlier's avatar
      allow flavors · 9d6fbf0e
      David Carlier authored
      9d6fbf0e
    • David Carlier's avatar
      allow flavors · a21d1522
      David Carlier authored
      a21d1522
    • David Carlier's avatar
      Fix clang build. · 6534b3e0
      David Carlier authored
      Some math functions require c11 standard.
      6534b3e0
    • 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