[moka同学笔记]yii2.0缓存

1.控制器中CacheDemoController.php

 <?php
/**
* Created by PhpStorm.
* User: moka同学
* Date: 2016/06/29
* Time: 8:38
*/
namespace app\controllers; use yii\web\Controller; class CacheDemoController extends Controller
{
/* public function behaviors()
{
return [
[
'class'=>'yii\filters\HttpCache',
'lastModified'=>function(){
return 124234;
},
'etagSeed'=>function(){
return 'etagseed23';
}
]
];
}*/ public function actionIndex(){
//echo 'hello';die();
$cache =\Yii::$app->cache;
$data = $cache->get('key');
if(!$data){
$data = "h33e55533lo";
$cache->set('key',$data,15);//保存缓存
//$data=$cache->get('key');
}
return $this->render('index2', [
'records' => $data,
]);
} public function actionIndex3()
{
//$res = \YII::$app->response;
//Example 1 状态码
//设置状态码 :$res->statusCode = '404';
/*
//对http头部的处理
$res->headers->add('pragma','no-cache'); //添加pragma
$res->headers->set('pragma','max-age-5'); //设置pragma的值为max-age-5
$res->headers->remove('pragma'); // 移除pragma的头部*/ //跳转
//$res->headers->add('location','http://www.baidu.com');
//$res->headers->add('content-disposion','attachment'); #----------------------------------------------------------------- //Example one
//缓存技术
//Ⅰ第一步 获取缓存组件
$cache = \Yii::$app->cache; /* //Ⅱ 第二步 往缓存中写数据
$cache->add('key1','hello world!'); //Ⅳ 修改缓存数据
// $cache->set('key1','hello world2'); //Ⅴ 删除缓存数据
$cache->delete('key1'); // Ⅵ 清空数据
$cache->flush();*/ //Ⅶ 设置缓存的有效期
//方法一
//$cache->add('key1','hello world',5);//缓存保存三秒
//方法二
//$cache->set('key1','hello world',5);//缓存设置3秒 //Ⅲ 第三步 读取缓存中的数据
//$data = $cache->get('key1');
//print_r($data);
//var_dump($data); //DB依赖
/* $dependency = new \yii\caching\DbDependency(
['sql'=>'SELECT COUNT(*) FROM test']
);
$cache->add('db_key','hello world6',3,$dependency);
var_dump($cache->get('db_key'));*/ // 案例
$data = $cache->get('cache_data_key');
if ($data === false) {
//这里我们可以操作数据库获取数据,然后通过$cache->set方法进行缓存
$cacheData = 'he3443o' ;
//set方法的第一个参数是我们的数据对应的key值,方便我们获取到
//第二个参数即是我们要缓存的数据
//第三个参数是缓存时间,如果是0,意味着永久缓存。默认是0
$cache->set('cache_data_key', $cacheData, 13);
$data = $cache->get('cache_data_key');
} return $this->render('index2', [
'records' => $data,
]); }
}

2.视图view/cache-demo/index.php 后边为index2

 <div class="container">
<?php
/**
* Created by PhpStorm.
* User: moka同学
* Date: 2016/06/27
* Time: 11:00
*/
?>
<?php
if($this->beginCache('cache')){
?>
<div id="cache">
这里有缓存片段werwe
</div>
<?php
$this->endCache();
}
?>
<div id="no-cache">
这里没有缓存片段ertre
</div>
</div>

index2.php

 <div class="container">
<?php
echo $records;
?>
</div>

index3.php

 <div class="container">
<?php
echo $new;
?>
</div>

注:~

转载请注明出处。QQ1727728211

上一篇:[moka同学笔记]Yii2.0验证码


下一篇:[moka同学笔记]yii2.0小物件的简单使用(第二种方法)