您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關頁面緩存怎么在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中使用了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。