私はこのスニペットに興味を持っています:
public function indexAction()
{
$response = $this->render('MyBundle:Main:index.html.twig');
$response->setETag(md5($response->getContent()));
$response->isNotModified($this->getRequest());
return $response;
}
可能な限りこれを行う必要がありますか?私のウェブサイトのほとんどのページは、この方法で帯域幅を節約できると思います(CPUではありませんが)。