jemalloc support backported in 2.4 using part of the Pieter Noordhuis and Didier Spezia original implementations

This commit is contained in:
antirez
2011-06-01 16:52:53 +02:00
parent 0811e89c80
commit 0042a2d737
6 changed files with 104 additions and 59 deletions

17
README
View File

@ -24,23 +24,6 @@ After building Redis is a good idea to test it, using:
% make test
Buliding using tcmalloc
-----------------------
tcmalloc is a fast and space efficient implementation (for little objects)
of malloc(). Compiling Redis with it can improve performances and memeory
usage. You can read more about it here:
http://goog-perftools.sourceforge.net/doc/tcmalloc.html
In order to compile Redis with tcmalloc support install tcmalloc on your system
and then use:
% make USE_TCMALLOC=yes
Note that you can pass any other target to make, as long as you append
USE_TCMALLOC=yes at the end.
Running Redis
-------------