由于memcached是基于libevent的,因此需要安装libevent
1.下载libevent
下载地址:http://libevent.org/
cd/tmp#首先进入到该下载包的目录
tar zxvf libevent-2.0.22-stable.tar.gz#解压包
cdlibevent--stable#进入到解压的目录./configure --prefix=/usr/local#编译前配置,生成Makefile文件,路径可自行更改make && make install#编译+安装
Memcached启动参数说明:
-d 选项是启动一个守护进程,
-m 是分配给Memcache使用的内存数量,单位是MB,默认64MB
-M return error on memory exhausted (rather than removing items)
-u 是运行Memcache的用户,如果当前为root 的话,需要使用此参数指定用户。
-l 是监听的服务器IP地址,默认为所有网卡。
-p 是设置Memcache的TCP监听的端口,最好是1024以上的端口
-c 选项是最大运行的并发连接数,默认是1024
-P 是设置保存Memcache的pid文件
-f <factor> chunk size growth factor (default: 1.25)
-I Override the size of each slab page. Adjusts max item size(1.4.2版本新增)
也可以启动多个守护进程,但是端口不能重复
-p 指定端口号(默认11211)
-m 指定最大使用内存大小(默认64MB)
-t 线程数(默认4)
-l 连接的IP地址,默认是本机
-d start 启动memcached服务
-d restart 重起memcached服务
-d stop|shutdown 关闭正在运行的memcached服务
-m 最大内存使用,单位MB。默认64MB
-M 内存耗尽时返回错误,而不是删除项
-c 最大同时连接数,默认是1024
-f 块大小增长因子,默认是1.25
-n 最小分配空间,key+value+flags默认是48
<?PHP $mem = new Memcache; $mem->connect("localhost",11211); $mem->set('key','This is a test!',60); $val = $mem->get('key'); echo $val; ?>