中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

頁面緩存怎么在Yii 2.0中使用

發布時間:2020-12-28 15:53:55 來源:億速云 閱讀:121 作者:Leah 欄目:開發技術

這期內容當中小編將會給大家帶來有關頁面緩存怎么在Yii 2.0中使用,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

示例代碼

<?php 


namespace common\lib;

use Yii;
use yii\caching\Cache;
use yii\di\Instance;
use yii\web\Response;
use yii\filters\PageCache as PCache;


/**
* 重寫頁面緩存,增加varByParam參數一列
*/
class PageCache extends PCache
{
 /**
 * 參數設置,默認無參數
 * 用法:'varByParam' => Yii::$app->request->get('id')
 * @var string
 */
 public $varByParam = '';

 public function beforeAction($action)
 {
 if (!$this->enabled) {
  return true;
 }

 $this->cache = Instance::ensure($this->cache, Cache::className());

 if (is_array($this->dependency)) {
  $this->dependency = Yii::createObject($this->dependency);
 }

 $properties = [];
 foreach (['cache', 'duration', 'dependency', 'variations'] as $name) {
  $properties[$name] = $this->$name;
 }
 $id = $this->varyByRoute ? $action->getUniqueId().$this->varByParam : __CLASS__;
 $response = Yii::$app->getResponse();
 ob_start();
 ob_implicit_flush(false);
 if ($this->view->beginCache($id, $properties)) {
  $response->on(Response::EVENT_AFTER_SEND, [$this, 'cacheResponse']);
  return true;
 } else {
  $data = $this->cache->get($this->calculateCacheKey());
  if (is_array($data)) {
  $this->restoreResponse($response, $data);
  }
  $response->content = ob_get_clean();
  return false;
 }
 }
}
 ?>

使用:

[
'class' => 'common\lib\PageCache',
  'only' => ['view'],
  'duration' => 0, //永不過期
  'varByParam' => Yii::$app->request->get('id'),
],

上述就是小編為大家分享的頁面緩存怎么在Yii 2.0中使用了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

房产| 岑巩县| 襄樊市| 龙游县| 德令哈市| 西昌市| 确山县| 清新县| 辰溪县| 太湖县| 寿阳县| 祁东县| 时尚| 苏尼特左旗| 两当县| 吉水县| 黄平县| 启东市| 万年县| 夏邑县| 大姚县| 新竹市| 容城县| 张家川| 满城县| 深泽县| 阜城县| 镇坪县| 班戈县| 清丰县| 仙游县| 曲沃县| 浪卡子县| 郧西县| 正定县| 永登县| 微博| 定安县| 当涂县| 左贡县| 瑞安市|