1. 03 Aug, 2010 2 commits
  2. 02 Aug, 2010 2 commits
  3. 31 Jul, 2010 1 commit
  4. 29 Jul, 2010 4 commits
  5. 28 Jul, 2010 3 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
    • antirez's avatar
      better random dataset creation function in test. master-slave replication test... · a0573260
      antirez authored
      better random dataset creation function in test. master-slave replication test now is able to save the two datasets in CSV when an inconsistency is detected.
      a0573260
  6. 27 Jul, 2010 7 commits
  7. 24 Jul, 2010 3 commits
    • Benjamin Kramer's avatar
      Add zcalloc and use it where appropriate · 399f2f40
      Benjamin Kramer authored
      calloc is more effecient than malloc+memset when the system uses mmap to
      allocate memory. mmap always returns zeroed memory so the memset can be
      avoided.  The threshold to use mmap is 16k in osx libc and 128k in bsd
      libc and glibc. The kernel can lazily allocate the pages, this reduces
      memory usage when we have a page table or hash table that is mostly
      empty.
      
      This change is most visible when you start a new redis instance with vm
      enabled.  You'll see no increased memory usage no matter how big your
      page table is.
      399f2f40
    • Benjamin Kramer's avatar
      Remove _dictAlloc and friends · d9dd352b
      Benjamin Kramer authored
      zmalloc calls abort() so _dictPanic will never be called.
      d9dd352b
    • Benjamin Kramer's avatar
      Reduce code duplication · b1e0bd4b
      Benjamin Kramer authored
      b1e0bd4b
  8. 23 Jul, 2010 1 commit
  9. 22 Jul, 2010 6 commits
  10. 21 Jul, 2010 1 commit
  11. 16 Jul, 2010 1 commit
  12. 12 Jul, 2010 1 commit
  13. 09 Jul, 2010 1 commit
  14. 07 Jul, 2010 1 commit
  15. 06 Jul, 2010 6 commits