- 03 Aug, 2010 2 commits
- 02 Aug, 2010 2 commits
- 31 Jul, 2010 1 commit
-
-
antirez authored
-
- 29 Jul, 2010 4 commits
-
-
Pieter Noordhuis authored
Return an error when the resulting value is not a number (NaN). Fix ZUNIONSTORE/ZINTERSTORE to clean up when a weight argument is not a double value.
-
Pieter Noordhuis authored
When +inf and -inf are added, the result is NaN. We don't want NaN scores in a sorted set, so agreed on the result of this operation being zero.
-
Pieter Noordhuis authored
even when the list is swapped out and in again.
-
Pieter Noordhuis authored
-
- 28 Jul, 2010 3 commits
-
-
antirez authored
-
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
-
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.
-
- 27 Jul, 2010 7 commits
- 24 Jul, 2010 3 commits
-
-
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.
-
Benjamin Kramer authored
zmalloc calls abort() so _dictPanic will never be called.
-
Benjamin Kramer authored
-
- 23 Jul, 2010 1 commit
-
-
Pieter Noordhuis authored
-
- 22 Jul, 2010 6 commits
-
-
antirez authored
-
Pieter Noordhuis authored
-
antirez authored
-
antirez authored
other shared objects where created in the I/O thread in createStringObjectFromLongLong. Fixed as well.
-
antirez authored
-
antirez authored
don't use object sharing inside I/O threads, as a fix for a well known instability of VM introduced with the new object sharing code
-
- 21 Jul, 2010 1 commit
-
-
antirez authored
-
- 16 Jul, 2010 1 commit
-
-
antirez authored
-
- 12 Jul, 2010 1 commit
-
-
antirez authored
-
- 09 Jul, 2010 1 commit
-
-
antirez authored
-
- 07 Jul, 2010 1 commit
-
-
antirez authored
-
- 06 Jul, 2010 6 commits