安装
开始在 PHP 中使用 Redis 前, 我们需要确保已经安装了 redis 服务及 PHP redis 驱动,且你的机器上能正常使用 PHP。 接下来让我们安装 PHP redis 驱动:下载地址为:https://github.com/phpredis/phpredis。
PHP安装redis扩展
cd /opt/tools/php wget https://github.com/phpredis/phpredis/archive/2.2.7.tar.gz tar xf 2.2.7.tar.gz cd phpredis-2.2.7/ /usr/local/php/bin/phpize ./configure --with-php-config=/usr/local/php/bin/php-config make && make install
更改php配置文件使其生效
vim /etc/php.d/redis.ini extension=redis.so service php-fpm restart