编写测试文件:
1、PHP连接redis
<?php
$redis = new Redis();
$redis->connect('127.0.0.1', 6379); //连接本地的 Redis 做事
echo \公众Connection to server sucessfully\公众;
echo \公众<br>\"大众;
echo \公众Server is running: \"大众.$redis->ping(); //查看做事是否运行
?>
输出结果:
Connection to server sucessfully
Server is running: PONG
2、PHP利用redis存储/读取数据
<?php
$redis = new Redis();
$redis->connect('127.0.0.1', 6379); //连接本地的 Redis 做事
echo \"大众Connection to server sucessfully\"大众;
$redis->set(\公众test\"大众, \"大众Redis tutorial\"大众); //设置redis字符串数据
echo \"大众Stored string in redis: \"大众.reedis->get(\公众test\"大众); //获取存储的数据并输出
?>
二、高等运用
1、php+redis实现缓存、临时保存数据的浸染
1)利用redis替代session/cooke实现\公众暂时保存数据\"大众的功能
如:处理用户登录、购物车……
2)类似于memechace的功能,实现\"大众动态缓存\"大众
如:不雅观看记录、用户曾经的订单信息……
3)替代MySQL实现数据的存储/读取
2、php+redis+mysql+web做事器实现项目架构