首先下载memcache扩展包
wget https://github.com/websupport-sk/pecl-memcache/archive/NON_BLOCKING_IO_php7.zip
#解压缩
unzip NON_BLOCKING_IO_php7.zip
#进入解压后的目录
cd pecl-memcache-NON_BLOCKING_IO_php7/
#生成配置文件
/www/server/php/73/bin/phpize
#配置
./configure –with-php-config=/www/server/php/73/bin/php-config
#编译
make
#安装
make install
安装后会出现Installing shared extensions: *****PHP的扩展目录,此目录一般为默认的php扩展目录,如果和默认的扩展目录不一致可以修改php.ini中的extension_dir为此目录
即在php.ini中添加
extension_dir = “/www/server/php/73/lib/php/extensions/no-debug-non-zts-20180731/”
然后再php.ini中添加memcache扩展(注意此处
extension=memcache.so
重启php使之生效