本文实例讲述了Yii开启片段缓存的方法。分享给大家供大家参考,具体如下:
1、main.php文件中的components中添加:
1
2
3
|
cache'=> array (
'class' => 'system.caching.CFileCache' ,
),
|
2、在view中哪里需要缓存就添加这句话
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php if ( $this ->beginCache( 'aaa' ,
array (
'duration' =>3360,
'varyByParam' => array ( 'page' ),
'dependecy' => array (
'class' => 'system.caching.CDbCacheDependency' ,
'sqll' => 'select count(server) from {{game_serve}}' ,
//设置依赖缓存,如果这个语句变化了,缓存跟新
),
)
)
){
//这里是没有缓存走的,上面设置缓存时间,并且设置变化缓存,如果没有分页就不需要最后一个参数
}
?>
//结束缓存这里,当没有缓存的时候走下面这if结尾也会缓存住信息,当前缓存在runtime文件夹中
|
希望本文所述对大家基于Yii框架的PHP程序设计有所帮助。