1. 09 Apr, 2020 1 commit
    • antirez's avatar
      RDB: load files faster avoiding useless free+realloc. · 30adc622
      antirez authored
      Reloading of the RDB generated by
      
          DEBUG POPULATE 5000000
          SAVE
      
      is now 25% faster.
      
      This commit also prepares the ability to have more flexibility when
      loading stuff from the RDB, since we no longer use dbAdd() but can
      control exactly how things are added in the database.
      30adc622
  2. 08 Apr, 2020 1 commit
  3. 07 Apr, 2020 1 commit
    • antirez's avatar
      Speedup INFO by counting client memory incrementally. · f6987628
      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.
      f6987628
  4. 06 Apr, 2020 4 commits
  5. 03 Apr, 2020 2 commits
  6. 02 Apr, 2020 6 commits
  7. 01 Apr, 2020 7 commits
  8. 31 Mar, 2020 6 commits
  9. 30 Mar, 2020 4 commits
  10. 29 Mar, 2020 1 commit
  11. 28 Mar, 2020 2 commits
  12. 27 Mar, 2020 5 commits