zoukankan      html  css  js  c++  java
  • YII http缓存

    http禁止缓存原理

    header('Expires: 0');
    header('Last-Modified: '. gmdate('D, d M Y H:i:s') . ' GMT');
    header('Cache-Control: no-store, no-cahe, must-revalidate');
    //ie专用
    header('Cache-Control: post-chedk=0, pre-check=0', false);
    //for HTTP/1.0
    header('Pragma: no-cache');

    HttpcacheController.php

    首先判断的是客户端lastModified,如果最后更新时间没有变化,就不会更新缓存,然后再判断etagSeed

    <?php
    /**
     * Created by PhpStorm.
     * Date: 2016/5/25
     * Time: 20:17
     * http 缓存
     */
    namespace frontendcontrollers;
    use yii;
    use yiiwebController;
    
    class HttpcacheController extends Controller
    {
        public function behaviors()//先于action执行,可以用来实现页面缓存
        {
            return [
                [
                    'class'=>'yiifiltersHttpCache',//整个页面缓存
                    'lastModified'=>function(){
                        return filemtime('hw.txt');
                        //return 22221231231231;//可以在每次修改数据时,记入缓存,从缓存读取
                    },
                    'etagSeed'=>function(){
                        $fp = fopen('hw.txt','r');//hw.txt在web的根目录下
                        $title = fgets($fp);//读取第一行
                        fclose($fp);
                        return $title;
                        //return 'etagseed2123123';//内容
                    },
                ]
            ];
        }
        public function actionIndex()
        {
            $content = file_get_contents('hw.txt');
            return $this->renderPartial("index",['new'=>$content]);
        }
    }

    httpcache/index.php

    <?php
    /**
     * Created by PhpStorm.
     * Date: 2016/5/25
     * Time: 20:19
     */
    ?>
    <div>
        <div>这是http缓存页面</div>
        <p><?= $new;?></p>
    </div>
  • 相关阅读:
    关于如在本地虚拟机上linux系统上设置静态的ip地址
    编程规约(下)-阿里巴巴Java开发手册
    编程规约(上) -- 阿里巴巴Java开发手册
    eclipse项目导入到idea
    博客收藏
    springboot springcloud
    idea配置maven仓库
    理项目
    日志管理
    [置顶] 2016年终总结
  • 原文地址:https://www.cnblogs.com/isuben/p/5529834.html
Copyright © 2011-2022 走看看