欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Yii 2.0如何使用页面缓存方法示例

程序员文章站 2024-03-09 10:26:05
前言 本文主要给大家介绍的是关于yii2.0如何使用页面缓存的相关内容,分享出来供大家参考学习,下面来一起看看详细的介绍。 起初使用页面缓存,发现使用于含有参数的方法存...

前言

本文主要给大家介绍的是关于yii2.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'),
],

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作能带来一定的帮助,如果有疑问大家可以留言交流,谢谢大家对的支持。