在Redis的zmalloc.c 原始碼中,我們可以看到如下程式碼:
/* Explicitly override malloc/free etc when using tcmalloc. */
# #if definALL(USE_TC# )
#define malloc(size) tc_malloc(size)
tc_calloc(count,size)是calloc函數的定義
real## #define realloc(ptr,size) tc_real#real( ptr,size) #define free(ptr) tc_free(ptr) #elif defined(USE_JEMALLOC) #define malloc(size) je_mal(size) je_mal(size) je_mal(size) je_mal(size) je_mal(size) je_malsize)) je##The following sentence is rewritten as requested: The statement "#define calloc(count,size) je_calloc(count,size)" is used to replace the standard defined function "calloc" with a custom function named "je_calloc".
# #define realloc(ptr. size) je_realloc(ptr,size)
#define free(ptr) je_free(ptr)
#endif
從上面的程式碼中我們可以看到,Redis在編譯時,會先判斷是否要使用tcmalloc,如果是,就會用tcmalloc對應的函式取代掉標準的libc中的函式實作。在此之後,會偵測jemalloc是否生效,如果不行,才會使用標準libc中的記憶體管理函數。
而在最新的2.4.4版本中,jemalloc已經作為源碼包的一部分包含在源碼包中,所以可以直接被使用。而如果你要使用tcmalloc的話,是需要自己安裝的。
下面簡單說一下如何安裝tcmalloc包,tcmalloc是google-proftools中的一部分,所以我們實際上需要安裝google-proftools。在64位元機器上安裝時,必須先安裝其所需的libunwind函式庫。
wget http://download.savannah.gnu.org/releases/libunwind/libunwind-0.99-alpha.tar.gz
tar zxvf libunwind-0.99-
## tar zxvf libunwind-0.99-alphaalpha.## cd libunwind-0.99-alpha/
# CFLAGS=-fPIC ./configure
make CFLAGS=-fPIC
,f# make CFLAGS=-fPIC
# Redis怎樣採用不同記憶體分配器碎片率對比 然後再進行google-preftools的安裝: wget http://google-perftools.googlecode.com/files/ google-perftools-1.8.1.tar.gz tar zxvf google-perftools-1.8.1.tar.gz# cd google-perftools-1.8.1/ cd google-perftools-1.8.1/# # ./configure --disable-cpu-profiler --disable-heap-profiler --disable-heap-checker --disable-debugalloc --enable-minimal make && make install
## make && make install
sudo echo "/usr/local/lib" > /etc/ld.so.conf.d/usr_local_lib.conf #如果沒有這個文件,自己建一個
sudo /sbin/ldconfig
接著再進行Redis的安裝,在make時指定對應的參數以啟用tcmalloc
$ curl -O http://redis.googlecode.com/files/redis-2.4.4.tar. gz
$ tar xzvf redis-2.4.4.tar.gz
$ cd redis-2.4.4
$ make USE_TCMALLOC=yes FORCE_LIes_# $ make USE_TCMALLOC=yes FORCE_LIes_MALLOCOC=BC ## $ sudo make install
再啟動Redis後透過info指令就能看到使用的記憶體分配器了。
回到本文的主題,本文討論的是tcmalloc、jemalloc以及libc所對應的三個記憶體分配器。以下是一個簡單的測試結果,摘自Redis info訊息,旨在評估它的性能和碎片率。測試使用了不同的分配器。我們可以看到,採用tcmalloc時碎片率是最低的,為1.01,jemalloc為1.02,而libc的分配器碎片率為1.31,如下所未:
used_memory:708391440
used_menory_human:675.57M
used_memory_rss:715169792
used_memory_peak:708814040
##"">">">">">">#>##>#c>#c>#c>#>#>#>#l#5_l#.>#4005_>#p.>#l#4005_>#p#.>#; em_fragmentation_ratio:1.01 mem_allocator:tcmalloc -1.7 used_memory:708381168 used_menory_human:675.56M used_ 羅_rss:72358702## used_。## used_memory_peak_human:675.97M
mem_fragmentation_ratio:1.02
mem_allocator:jemalloc-2.2.1
used_memory:869000400
## used_memory:869000400#huf#」>2400#。 _memory_rss:1136689152 used_memory_peak:868992208 used_memory_peak_human:828.74M mem_fragmentation_lib28.74M mem_fragmentation_lib0.74M mem以上是Redis如何採用不同記憶體分配器碎片率對比的詳細內容。更多資訊請關注PHP中文網其他相關文章!