- 02 Nov, 2010 5 commits
-
-
antirez authored
Now maxmemory, VM, and everything else uses the fast RSS memory used estimation instead of raw memory reported by zmalloc(). This means that setting maxmemory to 2GB will really have the effect of using up to 2GB of memory.
-
antirez authored
Function to compute RSS memory usage in a fast way, suitable to be called inside keys eviction loops
-
antirez authored
-
antirez authored
- 28 Oct, 2010 3 commits
-
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
- 27 Oct, 2010 1 commit
-
-
antirez authored
-
- 26 Oct, 2010 1 commit
-
-
Pieter Noordhuis authored
-
- 25 Oct, 2010 2 commits
- 24 Oct, 2010 1 commit
-
-
antirez authored
synchronous I/O networking functions originally used just for replication refactored in a file as generally useful, they are used in the cluster branch for MIGRATE.
-
- 23 Oct, 2010 2 commits
-
-
Pieter Noordhuis authored
-
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
- 17 Oct, 2010 4 commits
-
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
- 15 Oct, 2010 11 commits
-
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
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
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
Pieter Noordhuis authored
-
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.
-
- 13 Oct, 2010 1 commit
-
-
Pieter Noordhuis authored
-