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>
index.html

技术分享图片

 

页面展示

第一次

技术分享图片

第二次

技术分享图片

 

以上是关于php缓存的使用的主要内容,如果未能解决你的问题,请参考以下文章

PHP代码-psysh调试代码片段工具

使用 NodeJS 和 JSDOM/jQuery 从代码片段构建 PHP 页面

Swift新async/await并发中利用Task防止指定代码片段执行的数据竞争(Data Race)问题

Swift新async/await并发中利用Task防止指定代码片段执行的数据竞争(Data Race)问题

html PHP代码片段: - AJAX基本示例:此代码演示了使用PHP和JavaScript实现的基本AJAX功能。

在每个用户的Rails中使用片段缓存