這篇文章給大家介紹怎么在YII框架中實(shí)現(xiàn)http緩存,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
創(chuàng)新互聯(lián)堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:網(wǎng)站建設(shè)、成都網(wǎng)站制作、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的蘄春網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!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,如果最后更新時(shí)間沒(méi)有變化,就不會(huì)更新緩存,然后再判斷etagSeed
'yii\filters\HttpCache',//整個(gè)頁(yè)面緩存 'lastModified'=>function(){ return filemtime('hw.txt'); //return 22221231231231;//可以在每次修改數(shù)據(jù)時(shí),記入緩存,從緩存讀取 }, 'etagSeed'=>function(){ $fp = fopen('hw.txt','r');//hw.txt在web的根目錄下 $title = fgets($fp);//讀取第一行 fclose($fp); return $title; //return 'etagseed2123123';//內(nèi)容 }, ] ]; } public function actionIndex() { $content = file_get_contents('hw.txt'); return $this->renderPartial("index",['new'=>$content]); } }
httpcache/index.php
這是http緩存頁(yè)面= $new;?>
關(guān)于怎么在YII框架中實(shí)現(xiàn)http緩存就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。