redis是一个内存数据库,比memcache支持更丰富的value类型。
安装拓展前需要先安装redis,参考《CentOS7/RHEL7安装Redis》。
下面介绍为PHP添加redis插件。从官网下载最新的拓展,地址:http://pecl.php.net/package/redis或者https://github.com/phpredis/phpredis
1 2 3 4 |
#wget http://pecl.php.net/get/redis-2.2.5.tgz #phpize #./configure --prefix=/opt/redis --enable-redis --with-php-config=/opt/php/bin/php-config #make && make install |
把拓展添加至php.ini,重启php-fpm:
1 |
service php-fpm restart |
更多参考资料:
【1】https://github.com/phpredis/phpredis
【2】http://www.nginx.cn/1024.html