是否可以在带有 Symfony 2 的 ESI 中使用验证缓存?
如果你查看HttpFoundation Response类,你可以看到 isNotModified 是如何工作的:
/**
* Determines if the Response validators (ETag, Last-Modified) match
* a conditional value specified in the Request.
*
* If the Response is not modified, it sets the status code to 304 and
* removes the actual content by calling the setNotModified() method.
*
* @param Request $request A Request instance
*
* @return Boolean true if the Response validators match the Request, false otherwise
*
* @api
*/
public function isNotModified(Request $request)
{
$lastModified = $request->headers->get('If-Modified-Since');
$notModified = false;
if ($etags = $request->getEtags()) {
$notModified = (in_array($this->getEtag(), $etags) || in_array('*', $etags)) && (!$lastModified || $this->headers->get('Last-Modified') == $lastModified);
} elseif ($lastModified) {
$notModified = $lastModified == $this->headers->get('Last-Modified');
}
if ($notModified) {
$this->setNotModified();
}
return $notModified;
}
问题是 ESI $request->headers->get('If-Modified-Since'); 并且 $request->getEtags() 在 ESI 中不返回任何内容......所以缓存永远不会新鲜!
那么你有 $request 的解决方案吗?
如果验证 HTTP 缓存不能在 ESI 中工作,是否有另一种缓存部分的方法?
谢谢 !