一聚教程网:一个值得你收藏的教程网站

热门教程

php安装memcache扩展的步骤

时间:2022-06-30 21:15:18 编辑:袖梨 来源:一聚教程网


环境:

系统:CentOS 6.4 x86_64
PHP版本:php5.3.28

一、文件下载

1、memcache

memcache官网:http://pecl.php.net/package/memcache
memcache下载:http://down.shshenchu.com/memcache-3.0.8.tgz

二、安装和配置

1.下载和安装memcache

[root@server101 ~]# cd /usr/local/src/ //进入目录
[root@server101 src]# wget http://down.shshenchu.com/memcache-3.0.8.tgz //下载文件
[root@server101 src]# tar -zxvf memcache-3.0.8.tgz //解压文件
[root@server101 src]# cd memcache-3.0.8 //进入文件目录
[root@server101 memcache-3.0.8]# /usr/local/php/bin/phpize //生成configure文件
[root@server101 memcache-3.0.8]# ./configure --with-php-config=/usr/local/php/bin/php-config //生成makefile文件
[root@server101 memcache-3.0.8]# make -j2 && make install //编译及安装

2.配置php.ini文件

1)添加memcache.so扩展
//在php.ini文件最后添加以下内容

[memcache]
extension=memcache.so

2)修改session配置

//将参数修改如下

session.save_handler = memcache
session.save_path = "tcp://192.168.4.106:12000"

热门栏目