1. 程式人生 > >CentOS 6 安裝最新的 Redis 2.8 ,安裝 TCMalloc

CentOS 6 安裝最新的 Redis 2.8 ,安裝 TCMalloc

1,遇到的問題就是 redis 2.8 版本依賴 Google 的 TCMalloc

TCMalloc(Thread-Caching Malloc)是google開發的開源工具──“google-perftools”中的成員。與標準的glibc庫的malloc相比,

TCMalloc在記憶體的分配上效率和速度要高得多,可以在很大程度上提高MySQL伺服器在高併發情況下的效能,降低系統負載。

2,安裝 TCMalloc 

使用rpm 安裝,下載 gperftools-libs 進行安裝,這個lib包括了TCMalloc 這個lib庫。

http://pkgs.org/centos-6/atomic-x86_64/gperftools-libs-2.0-11.el6.1.art.x86_64.rpm.html

rpm -ivh gperftools-libs-2.0-11.el6.1.art.x86_64.rpm

檢視是否安裝成功:

ls /usr/lib64/libtcmalloc.so.4.1.0

3,下載redis安裝

http://pkgs.org/download/redis

http://pkgs.org/centos-6/remi-x86_64/redis-2.8.8-1.el6.remi.x86_64.rpm.html


rpm安裝 redis-2.8.9-1.el6.remi.x86_64.rpm

rpm -ivh redis-2.8.9-1.el6.remi.x86_64.rpm

啟動reids:

service redis start

設定開機啟動:

chkconnfig redis on