我创建了这个过滤器
return array(
array(
'CHttpCacheFilter + View',
'lastModified'=>Yii::app()->db->createCommand(
"SELECT MAX(`date_taken`) FROM image")->queryScalar(),
),
);
它在php Yii中缓存actionView
的所有数据
问题是我的页面区域需要是动态的。
我查看了该页面上的部分缓存。这不会带来性能优势。主要权重是sql查询。我尝试将数据添加到缓存键。但数据超过1 MB,因此效果不佳。任何人都知道这个最佳方式
/**
* View for a Image
* @param string $alias_title the image a user would like to view
*/
public function actionView($alias_title)
{
$associated_image_details = Image::getImageFromAliasTitle($alias_title);
$image = Utils::getArrayOrNull($associated_image_details, 0);
$album = Utils::getArrayOrNull($associated_image_details, 1);
$tag= Utils::getArrayOrNull($associated_image_details, 2);
$comment= Utils::getArrayOrNull($associated_image_details, 3);
$media_set= Utils::getArrayOrNull($associated_image_details, 4);
$media_gallery= Utils::getArrayOrNull($associated_image_details, 5);
$media_group= Utils::getArrayOrNull($associated_image_details, 6);
$this->render('view', array(
'image' => $image,
'album'=>$album,
'comment'=>$comment,
'tag'=>$tag,
'media_set'=>$media_set,
'media_gallery'=>$media_gallery,
'media_group'=>$media_group
));
}