1. 06 Aug, 2013 2 commits
  2. 20 Dec, 2012 1 commit
  3. 30 Nov, 2012 1 commit
  4. 08 Nov, 2012 1 commit
  5. 10 Oct, 2012 1 commit
    • NanXiao's avatar
      Update src/redis-benchmark.c · 9eb3a7bc
      NanXiao authored
      The code of current implementation:
      
      if (c->pending == 0) clientDone(c);
      In clientDone function, the c's memory has been freed, then the loop will continue: while(c->pending). The memory of c has been freed now, so c->pending is invalid (c is an invalid pointer now), and this will cause memory dump in some platforams(eg: Solaris).
      
      So I think the code should be modified as:
      if (c->pending == 0)
      {
      clientDone(c);
      break;
      }
      and this will not lead to while(c->pending).
      9eb3a7bc
  6. 21 Aug, 2012 1 commit
    • antirez's avatar
      redis-benchmark: disable big buffer cleanup in hiredis context. · 227b4293
      antirez authored
      This new hiredis features allows us to reuse a previous context reader
      buffer even if already very big in order to maximize performances with
      big payloads (Usually hiredis re-creates buffers when they are too big
      and unused in order to save memory).
      227b4293
  7. 26 Feb, 2012 1 commit
  8. 23 Feb, 2012 2 commits
  9. 19 Feb, 2012 1 commit
  10. 31 Jan, 2012 1 commit
  11. 15 Dec, 2011 1 commit
  12. 07 Nov, 2011 1 commit
  13. 04 Nov, 2011 2 commits
  14. 03 Nov, 2011 1 commit
  15. 16 Sep, 2011 1 commit
  16. 01 Jun, 2011 3 commits
  17. 24 Jan, 2011 1 commit
  18. 23 Dec, 2010 2 commits
  19. 22 Dec, 2010 2 commits
  20. 18 Dec, 2010 2 commits
  21. 16 Dec, 2010 2 commits
  22. 05 Nov, 2010 1 commit
  23. 04 Nov, 2010 2 commits
  24. 15 Oct, 2010 2 commits
  25. 30 Aug, 2010 2 commits
  26. 01 Aug, 2010 1 commit
  27. 01 Jul, 2010 1 commit
    • antirez's avatar
      redis.c split into many different C files. · e2641e09
      antirez authored
      networking related stuff moved into networking.c
      
      moved more code
      
      more work on layout of source code
      
      SDS instantaneuos memory saving. By Pieter and Salvatore at VMware ;)
      
      cleanly compiling again after the first split, now splitting it in more C files
      
      moving more things around... work in progress
      
      split replication code
      
      splitting more
      
      Sets split
      
      Hash split
      
      replication split
      
      even more splitting
      
      more splitting
      
      minor change
      e2641e09
  28. 04 Mar, 2010 1 commit