centos6 php 安装 memcache

  • 下载安装memcache

注意:官网的memcache包,暂时好像不支持php7。所以到下面地址下载memcache包,切换到php7分支

php7 memcache github 下载地址

官网下载地址

# 下载
wget https://github.com/websupport-sk/pecl-memcache/archive/php7.zip

# 解压
unzip php7.zip

cd pecl-memcache-php7

# 编译
/usr/local/php7/bin/phpize
./configure  --with-php-config=/usr/local/php7/bin/php-config

# 安装
make
make install

# 生成memcache.so文件后,在php.ini文件添加
extension=memcache.so

# 重启php-fpm即可

猜你喜欢

转载自www.cnblogs.com/qq917937712/p/11797493.html