码迷,mamicode.com
首页 > 其他好文 > 详细

使用TCMalloc优化OpenResty

时间:2014-08-25 09:55:24      阅读:315      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   使用   文件   ar   2014   div   

1、安装依赖包

yum -y install wget gcc gcc-c++ -y

2、安装libunwind库
可以从http://ftp.twaren.net/Unix/NonGNU//libunwind/下载

wget http://ftp.twaren.net/Unix/NonGNU//libunwind/libunwind-1.1.tar.gz
tar zxvf libunwind-1.1.tar.gz
cd libunwind-1.1
CFLAGS=-fPIC ./configure
make CFLAGS=-fPIC
make CFLAGS=-fPIC install

3、安装google-perftools
下载http://pan.baidu.com/s/1bnfDFbD

tar zxvf gperftools-2.1.tar.gz
cd gperftools-2.1
./configure
make
make install
echo "/usr/local/lib" > /etc/ld.so.conf.d/usr_local_lib.conf
/sbin/ldconfig

为google-perftools创建一个线程目录

mkdir /tmp/tcmalloc
chmod 777 /tmp/tcmalloc

4、安装OpenResty

请参看我另一篇博客http://www.cnblogs.com/kgdxpr/p/3550633.html

编译时增加--with-google_perftools_module

./configure --prefix=/usr/local/openresty --with-google_perftools_module --with-http_stub_status_module --with-luajit

 查看nginx安装的模块

/usr/local/openresty/nginx/sbin/nginx -V

bubuko.com,布布扣

修改nginx主配置文件,在pid这行的下面添加如下代码

bubuko.com,布布扣

验证google-perftools是否已经正常加载,可通过如下命令查看

lsof -n | grep tcmalloc

bubuko.com,布布扣

使用TCMalloc优化OpenResty

标签:style   blog   http   color   使用   文件   ar   2014   div   

原文地址:http://www.cnblogs.com/kgdxpr/p/3934293.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!