php缓存的使用
Posted lichao666888
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php缓存的使用相关的知识,希望对你有一定的参考价值。
//缓存的使用 public function huancun(){ $data=cache(‘userData‘); //从缓存中获取数据 if ($data){ echo "缓存中获取"; }else{ echo "数据库中获取"; //如果没有从数据库获取 $data=Db::table("user")->select(); cache(‘userData‘,$data,20); } //分配数据 $this->assign(‘users‘,$data); //加载页面 return $this->fetch(‘index‘); }
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>读取数据</title> </head> <body> <table border="1" width="800px" align="center"> <tr> <th>ID</th> <th>NAME</th> <th>PASS</th> </tr> {volist name=‘users‘ id=‘value‘} <tr> <td>{$value.id}</td> <td>{$value.name}</td> <td>{$value.pass}</td> </tr> {/volist} </table> </body> </html>
页面展示
第一次
第二次
以上是关于php缓存的使用的主要内容,如果未能解决你的问题,请参考以下文章
使用 NodeJS 和 JSDOM/jQuery 从代码片段构建 PHP 页面
Swift新async/await并发中利用Task防止指定代码片段执行的数据竞争(Data Race)问题
Swift新async/await并发中利用Task防止指定代码片段执行的数据竞争(Data Race)问题