- 27 Jul, 2010 2 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
- 05 Jul, 2010 5 commits
-
-
Pieter Noordhuis authored
-
antirez authored
-
antirez authored
-
antirez authored
Fixed a crash loading the AOF file containing MULTI/EXEC, a result of WATCH implementation. Test needed...
-
antirez authored
WATCH will now consider touched keys target of EXPIRE command after the WATCH is performed, but not before
-
- 01 Jul, 2010 11 commits
-
-
antirez authored
-
antirez authored
Fixed MONITOR output for consistency: now integer encoded values are also formatted like this: "3932"
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
-
antirez authored
networking related stuff moved into networking.c moved more code more work on layout of source code SDS instantaneuos memory saving. By Pieter and Salvatore at VMware ;) cleanly compiling again after the first split, now splitting it in more C files moving more things around... work in progress split replication code splitting more Sets split Hash split replication split even more splitting more splitting minor change
-
- 24 Jun, 2010 1 commit
-
-
antirez authored
-