1. 24 Apr, 2020 16 commits
  2. 17 Apr, 2020 1 commit
  3. 16 Apr, 2020 3 commits
  4. 15 Apr, 2020 17 commits
  5. 08 Apr, 2020 1 commit
  6. 07 Apr, 2020 2 commits
    • mymilkbottles's avatar
      Judge the log level in advance · 2437455f
      mymilkbottles authored
      2437455f
    • antirez's avatar
      Speedup INFO by counting client memory incrementally. · 35c64b89
      antirez authored
      Related to #5145.
      
      Design note: clients may change type when they turn into replicas or are
      moved into the Pub/Sub category and so forth. Moreover the recomputation
      of the bytes used is problematic for obvious reasons: it changes
      continuously, so as a conservative way to avoid accumulating errors,
      each client remembers the contribution it gave to the sum, and removes
      it when it is freed or before updating it with the new memory usage.
      35c64b89