Chinaunix首页 | 论坛 | 博客
  • 博客访问: 289244
  • 博文数量: 57
  • 博客积分: 965
  • 博客等级: 准尉
  • 技术积分: 736
  • 用 户 组: 普通用户
  • 注册时间: 2011-08-24 10:22
文章分类

全部博文(57)

文章存档

2014年(2)

2013年(22)

2012年(25)

2011年(8)

分类: 服务器与存储

2012-11-08 11:26:13

服务器端主要是安装memcache服务器端
wget
 
另外,Memcache用到了libevent这个库用于Socket的处理,所以还需要安装libevent
wget
 
tar xzf libevent-1.4.14b-stable.tar.gz
cd libevent-1.4.14b-stable
./configure --prefix=/usr/local/libevent-1.4.14b
make && make install
cd ..
 
tar -zxvf memcached-1.4.4.tar.gz
cd memcached-1.4.4
./configure --prefix=/usr/local/memcached-1.4.4 --with-libevent=/usr/local/libevent-1.4.14b
make
make install
阅读(866) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~