我对这个片段很感兴趣:
public function indexAction()
{
$response = $this->render('MyBundle:Main:index.html.twig');
$response->setETag(md5($response->getContent()));
$response->isNotModified($this->getRequest());
return $response;
}
我应该尽可能地这样做吗?我认为我网站中的大多数页面都可以通过这种方式节省带宽(尽管不是 CPU)。