我创建了这个过滤器
return array(
array(
'CHttpCacheFilter + View',
'lastModified'=>Yii::app()->db->createCommand(
"SELECT MAX(`date_taken`) FROM image")->queryScalar(),
),
);
actionView
它在 php Yii 中缓存所有数据
问题是我在页面上有需要动态的区域。
我查看了该页面上的部分缓存。这并没有带来性能优势。主要权重是 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
));
}