1. 24 8月, 2010 2 次提交
  2. 23 8月, 2010 1 次提交
  3. 05 8月, 2010 1 次提交
  4. 03 8月, 2010 5 次提交
  5. 30 7月, 2010 2 次提交
  6. 29 7月, 2010 2 次提交
    • A
      fix of the fix for the replication bug · cbf7e107
      antirez 提交于
      cbf7e107
    • A
      Fixed a replication bug in ZINTERSTORE. · 8c1420ff
      antirez 提交于
      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
  7. 27 7月, 2010 5 次提交
  8. 25 7月, 2010 3 次提交
    • B
      Add zcalloc and use it where appropriate · 399f2f40
      Benjamin Kramer 提交于
      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
    • B
      Remove _dictAlloc and friends · d9dd352b
      Benjamin Kramer 提交于
      zmalloc calls abort() so _dictPanic will never be called.
      d9dd352b
    • B
      Reduce code duplication · b1e0bd4b
      Benjamin Kramer 提交于
      b1e0bd4b
  9. 23 7月, 2010 1 次提交
  10. 22 7月, 2010 5 次提交
  11. 21 7月, 2010 1 次提交
  12. 17 7月, 2010 1 次提交
  13. 12 7月, 2010 1 次提交
  14. 09 7月, 2010 1 次提交
  15. 08 7月, 2010 1 次提交
  16. 07 7月, 2010 2 次提交
  17. 06 7月, 2010 4 次提交
  18. 02 7月, 2010 2 次提交