当前位置:Gxlcms > PHP教程 > php使用redis的缓存实例

php使用redis的缓存实例

时间:2021-07-01 10:21:17 帮助过:8人阅读

本篇文章给大家分享的内容是php 使用 redis 的缓存实例,有着一定的参考价值,有需要的朋友可以参考一下

最近刚开始研究redis,就写了一个php 使用 redis 的缓存小实例,不喜勿喷

大致思路如下:

主要对新闻进行缓存

首先判断如果是第一次访问,则查询数据库,并存入redis;如果不是,则直接从redis中读取数据

我设置了一个inner来判断是否为第一次访问,并且设置了inner的有效期是60秒(例如新闻需要实时)

具体代码如下:

<?php  
//实例化redis
$redis = new \Redis();
//连接redis
$redis->connect('127.0.0.1',6379);
$redis->auth('12345'); 
if($redis->get('inner')=='yes' || !$redis->get('inner')){
	//第一次进入,需要缓存
	//连接数据库进行查询
	$db = new mysqli('127.0.0.1','root','root','table');
	$sql = "select * from newsinfo";
	$res = $db->query($sql);
	while($new = mysqli_fetch_assoc($res)){
		$news[] = $new;
	}
        //将数据存入redis的list中
	$json=json_encode($news);
	$redis->del('news');//把键值删除,防止重复
    $redis->lPush('news', $json);
    $redis->set('inner', 'no',60); //设置键值有效期为60秒
}else{
	//从redis中取出数据
	$json=$redis->lRange('news', 0, -1);
	$news=json_decode($json[0],true);
}

?>
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>redis缓存实例</title>
</head>
<body>
	<?php foreach ($news as $k => $v) {  ?>
		<li><?php  echo $v['title'];  ?></li>
	<?php } ?>
</body>
</html>

在直接访问数据库时的反应时间为

而第二次访问反应时间为

反应时间明显减少了

相关推荐:

关于PHP中Redis命令的部分总结

php添加redis扩展图文详解

30个php操作redis常用的方法代码例子


以上就是php 使用 redis 的缓存实例的详细内容,更多请关注Gxl网其它相关文章!

人气教程排行