我有一个控制器,其动作用树枝渲染
{{ render_esi(controller('MyWebsiteBundle:Element:header')) }}
行动本身如下:
/**
* @return Response
*/
public function headerAction()
{
$currentLocale = $this->getCurrentLocale();
$response = $this->render('MyWebsiteBundle:Element:header.html.twig', array(
'currentLocale' => $currentLocale,
'myTime' => time()
));
$response->setPublic();
$response->setSharedMaxAge(3600);
return $response;
}
当我重新加载浏览器时,"myTime"
每次都会更改。
如何使用setShardeMaxAge()
,以便仅在MaxAge过期后呈现Twig?
答案 0 :(得分:4)
在Symfony2中,您需要做一些事情才能激活esi缓存。
1)在app/config/config.yml
中,确保使用片段路径激活esi。
framework:
esi: { enabled: true }
fragments: { path: /_proxy }
2)用AppCache对象包装内核
// web/app.php
$kernel = new AppCache($kernel);
3)设置AppCache配置
// app/AppCache.php
use Symfony\Bundle\FrameworkBundle\HttpCache\HttpCache;
class AppCache extends HttpCache
{
protected function getOptions()
{
return array(
'debug' => false,
'default_ttl' => 0,
'private_headers' => array('Authorization', 'Cookie'),
'allow_reload' => false,
'allow_revalidate' => false,
'stale_while_revalidate' => 2,
'stale_if_error' => 60,
);
}
}
关于您的问题,如果它正在缓存您的响应,唯一的问题是它每次刷新页面时都会重新加载。确保配置allow_reload
属性设置为false。
您可以在此处详细了解: http://symfony.com/doc/current/book/http_cache.html