- 23 Oct, 2010 1 commit
-
-
Pieter Noordhuis authored
Also, use tcmalloc functions explicitly via macros to prevent symbol lookups to resolve to native malloc/free on OSX.
-
- 22 Oct, 2010 2 commits
-
-
antirez authored
Make sure to reset the signal handler and deliver again the original crashing signal when dumping the stack trace. This will allow to dump the core if core dumping is enabled.
-
Robey Pointer authored
-
- 21 Oct, 2010 4 commits
- 15 Oct, 2010 6 commits
-
-
antirez authored
prevent small integer sharing when maxmemory is active. So every object will use a private LRU field and the LRU algorithm can work well
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
Don't increment dirty on expireIfNeeded() as natural expires are not considered database changes. This will avoid useless read-only commands in the AOF file as a result of, for instance, a GET operation triggering an expirIfNeeded() call resulting in an expired key removed.
-
- 14 Oct, 2010 3 commits
-
-
antirez authored
-
Pieter Noordhuis authored
-
antirez authored
Object approximated LRU algorithm enhanced / fixed / refactored. This is used for the VM currently but will soon be used for maxmemory expiring.
-
- 11 Oct, 2010 2 commits
- 07 Oct, 2010 2 commits
- 23 Sep, 2010 3 commits
-
-
Pieter Noordhuis authored
-
antirez authored
-
antirez authored
-
- 22 Sep, 2010 4 commits
-
-
Pieter Noordhuis authored
-
antirez authored
-
antirez authored
-
antirez authored
-
- 17 Sep, 2010 2 commits
- 16 Sep, 2010 3 commits
-
-
antirez authored
-
antirez authored
modified a bit addReply() to play better with copy on write now that we have a static buffer. Changed the name of a function from _ensureFileEvent() to _installWriteEvent().
-
Pieter Noordhuis authored
-
- 15 Sep, 2010 1 commit
-
-
antirez authored
This should fix Issue 332: when there is a background process saving we still allow the hash tables to grow, but only when a critical treshold is reached. Formerly we prevented the resize at all triggering pathological O(N) behavior. Also there is a fix for the statistics in INFO about the number of keys expired
-
- 14 Sep, 2010 2 commits
- 13 Sep, 2010 3 commits
-
-
Pedro Melo authored
Thanks to sylr@github Signed-off-by:
Pedro Melo <melo@simplicidade.org>
-
Pedro Melo authored
Signed-off-by:
Pedro Melo <melo@simplicidade.org>
-
Pedro Melo authored
Signed-off-by:
Pedro Melo <melo@simplicidade.org>
-
- 09 Sep, 2010 1 commit
-
-
antirez authored
redis-cli does no longer try to auto detect if it is used inside a pipe. To read last argument from stdandard input there is to use the -x option. This will make it playing better inside cron scripts and in general when stdin is hacked.
-
- 08 Sep, 2010 1 commit
-
-
antirez authored
Fix re-enabled again, I forgot to check if VM was enabled before calling handleClientsBlockedOnSwappedKey()
-