1. 09 Mar, 2011 6 commits
  2. 08 Mar, 2011 12 commits
  3. 29 Dec, 2010 1 commit
  4. 17 Oct, 2010 1 commit
  5. 13 Oct, 2010 2 commits
  6. 22 Sep, 2010 3 commits
  7. 16 Sep, 2010 2 commits
  8. 02 Sep, 2010 3 commits
  9. 30 Aug, 2010 1 commit
  10. 03 Aug, 2010 2 commits
  11. 29 Jul, 2010 2 commits
  12. 28 Jul, 2010 2 commits
    • antirez's avatar
      fix of the fix for the replication bug · cbf7e107
      antirez authored
      cbf7e107
    • antirez's avatar
      Fixed a replication bug in ZINTERSTORE. · 8c1420ff
      antirez authored
      In order to trigger the bug what's needed is to call ZINTERSTORE
      resulting into an empty set created, bug against a key that already
      existed. The command was not propagated, so the replica ended with the
      key that the master removed. Sequence of command to reproduce:
      
      redis-cli hset 446 34 905
      redis-cli hset 446 393 911
      redis-cli zadd 966 0.085412045980529885 652
      redis-cli zadd 645 0.25081839284432045 280
      redis-cli zinterstore 446 2 966 645
      8c1420ff
  13. 12 Jul, 2010 1 commit
  14. 05 Jul, 2010 1 commit
  15. 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