漂亮蓝影 发表于 2018-12-25 13:37:24

memcached精讲第二部

  老男孩之memcached精讲第二部

  1.1Memcache 服务器的安装。

  Linux,FreeBSD,Solaris,windows。这里以Centos6.4为例进行说明。
软件地址:Memcached 下载地址:
         libevent 下载地址:
         网友安装资料:http://instance.iteye.com/blog/1691705  

  安装memcached

  安装libevent(c6.6)
  安装环境:
  

[*]  [root@lnmp tools]# tar xf libevent-1.4.13-stable.tar.gz
[*]  [root@lnmp tools]# cd libevent-1.4.13-stable
[*]  [root@lnmp libevent-1.4.13-stable]# ./configure
[*]  [root@lnmp libevent-1.4.13-stable]# make && make install
[*]  Centos操作系统可以使用 yum直接安装libevent
  安装memcached:

[*]  [root@lnmp tools]# tar xf memcached-1.4.13.tar.gz
[*]  [root@lnmp tools]# cd memcached-1.4.13
[*]  [root@lnmp memcached-1.4.13]# ./configure
[*]  [root@lnmp memcached-1.4.13]# make && make install
  
其他下载地址:
  http://memcached.googlecode.com/files/memcached-1.4.15.tar.gz
  http://code.google.com/p/memecached/downloads/list
  提示:
  memcache-2.2.5.tgz
页: [1]
查看完整版本: memcached精讲第二部