1. 24 May, 2012 1 commit
    • antirez's avatar
      Dead code removed from replication.c. · 8152d0c0
      antirez authored
      The user @jokea noticed that the following line of code into
      replication.c made little sense:
      
          addReplySds(slave,sdsempty());
      
      Investigating a bit I found that this was introduced by commit 6208b3a7
      three years ago in the early stages of Redis. The code apparently is not
      useful at all, so I'm removing it.
      
      This change will not be backported into 2.4 so that in the rare case
      this should introduce a bug, we'll have a chance to detect it into the
      development branch. However following the code path it seems like the
      code is not useful at all, so the risk is truly small.
      8152d0c0
  2. 02 May, 2012 1 commit
  3. 27 Apr, 2012 1 commit
  4. 31 Mar, 2012 1 commit
  5. 30 Mar, 2012 2 commits
  6. 29 Mar, 2012 1 commit
  7. 27 Mar, 2012 1 commit
  8. 07 Mar, 2012 1 commit
  9. 29 Feb, 2012 1 commit
  10. 16 Jan, 2012 1 commit
  11. 30 Dec, 2011 1 commit
  12. 21 Dec, 2011 3 commits
  13. 15 Dec, 2011 1 commit
  14. 30 Nov, 2011 1 commit
  15. 31 Oct, 2011 1 commit
  16. 18 Oct, 2011 1 commit
  17. 09 Jun, 2011 1 commit
  18. 30 May, 2011 1 commit
  19. 22 May, 2011 2 commits
  20. 19 May, 2011 1 commit
  21. 21 Feb, 2011 1 commit
  22. 20 Jan, 2011 1 commit
  23. 14 Dec, 2010 1 commit
  24. 12 Nov, 2010 1 commit
  25. 04 Nov, 2010 4 commits
  26. 24 Oct, 2010 1 commit
  27. 02 Sep, 2010 1 commit
  28. 27 Aug, 2010 1 commit
  29. 24 Aug, 2010 2 commits
  30. 01 Jul, 2010 2 commits
    • antirez's avatar
      Fixed MONITOR output for consistency: now integer encoded values are also... · d3b958c3
      antirez authored
      Fixed MONITOR output for consistency: now integer encoded values are also formatted like this: "3932"
      d3b958c3
    • 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