Yii设置Cache缓存的方法

 先在配置文件components数组中加上:

'cache'=>array( 'class'=>'CFileCache'),

 

设置Cache:

Yii::app()->cache->set('testcache', array(1,3,4,6));//默认有效期为一年

Yii::app()->cache->set('testcache', array(1,3,4,6), 3600);//一个钟,秒为单位

 

获取Cache:

$data = Yii::app()->cache->get('testcache');

 

删除单个Cache:

Yii::app()->cache->delete('testcache');

 

清空全部Cache:

Yii::app()->cache->flush();

 

posted @ 2017-03-31 10:26  侠岚之弋痕夕  阅读(1333)  评论(0编辑  收藏  举报
Where is the starting point, we don't have a choice, but the destination where we can pursue!