Ubuntu 16.04环境中安装PHP7.0 Redis扩展

Ubuntu 16.04环境中安装PHP7.0 Redis扩展

安装配置步骤如下:

1.root@ubuntu:/tmp# git clone -b php7 https://github.com/phpredis/phpredis.git

2.root@ubuntu:/tmp# mv phpredis/ /etc/

3.root@ubuntu:/tmp#  cd /etc/phpredis

4.root@ubuntu://etc/phpredis# phpize

5.root@ubuntu://etc/phpredis# ./configure

6. root@ubuntu://etc/phpredis#make && make install

7.root@ubuntu://etc/phpredis#vi /etc/php/7.0/fpm/conf.d/redis.ini  中 写入(extension=/etc/phpredis/modules/redis.so)退出保存

8.root@ubuntu://etc/phpredis#vi /etc/php/7.0/apache2/php.ini 中写入 (extension=/etc/phpredis/modules/redis.so)

9. 重启apache2 /etc/init.d/apache2 restart

./redis-serverredis.conf开启redis后台服务。
如果你修改redis.conf中的任何配置,需要关闭redis-server进程后,再./redis-serverredis.conf重新开启redis后台服务。

在phpinfo 查查看是否成功

Ubuntu 16.04环境中安装PHP7.0 Redis扩展

代码测试

<?php

//连接本地Redis服务
$redis=new Redis();
$redis->connect('localhost','6379'); //$redis->auth('admin123');//如果设置了密码,添加此行
//查看服务是否运行
$redis->ping();

//选择数据库
$redis->select(5);

//设置数据
$redis->set('school','WuRuan');
//设置多个数据
$redis->mset(array('name'=>'jack','age'=>24,'height'=>'1.78'));

//存储数据到列表中
$redis->lpush("tutorial-list", "Redis");
$redis->lpush("tutorial-list", "Mongodb");
$redis->lpush("tutorial-list", "Mysql");

//获取存储数据并输出
echo $redis->get('school');

echo '<br/>';

$gets=$redis->mget(array('name','age','height'));
print_r($gets);

$tl=$redis->lrange("tutorial-list", 0 ,5);
print_r($tl);
?>

下面关于Redis的文章您也可能喜欢,不妨参考下:

Ubuntu 14.04下Redis安装及简单测试

Redis主从复制基本配置

Redis集群明细文档

Ubuntu 12.10下安装Redis(图文详解)+ Jedis连接Redis

Redis系列-安装部署维护篇

CentOS 6.3安装Redis

Redis安装部署学习笔记

Redis配置文件redis.conf 详解

Redis 的详细介绍请点这里
Redis 的下载地址请点这里

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/f5048f893011557bab79975eb8e7fcb1.html