我使用Symfony2为iOS-App制作了一个API。应用程序使用header-parameter if-modified-since
“If-Modified-Since”=“Thu,2013年11月7日11:50:52 GMT”;
在控制器中,我检查参数并在日期较新时返回数据。但是在Symfony2中,参数将在类Symfony\Component\HttpKernel\HttpCache\HttpCache.php
中的生产环境中删除。这是课堂上的功能。
/**
* Forwards the Request to the backend and determines whether the response should be stored.
*
* This methods is triggered when the cache missed or a reload is required.
*
* @param Request $request A Request instance
* @param Boolean $catch whether to process exceptions
*
* @return Response A Response instance
*/
protected function fetch(Request $request, $catch = false)
{
$subRequest = clone $request;
// send no head requests because we want content
$subRequest->setMethod('GET');
// avoid that the backend sends no content
$subRequest->headers->remove('if_modified_since');
$subRequest->headers->remove('if_none_match');
$response = $this->forward($subRequest, $catch);
if ($this->isPrivateRequest($request) && !$response->headers->hasCacheControlDirective('public')) {
$response->setPrivate(true);
} elseif ($this->options['default_ttl'] > 0 && null === $response->getTtl() && !$response->headers->getCacheControlDirective('must-revalidate')) {
$response->setTtl($this->options['default_ttl']);
}
if ($response->isCacheable()) {
$this->store($request, $response);
}
return $response;
}
所以看起来Symfony找不到请求响应的缓存条目,并删除此参数以确保将有内容缓存,但他从未找到条目。也是经过多次重装后。
我需要在控制器中使用此参数,此时应用程序无法更改参数或发送带有日期值的其他参数。
我是否需要进行一些配置或其他什么?
如果有人能帮助我,我真的很感激。
答案 0 :(得分:0)
在您的prod环境中,您似乎正在使用app / AppCache.php而不是app / AppKernel.php 所以,简而言之,如果您想自己切换回web / app.php中的app / AppCache.php
require_once __DIR__.'/../app/AppKernel.php';
//require_once __DIR__.'/../app/AppCache.php';
$kernel = new AppKernel('prod', false);
$kernel->loadClassCache();
//$kernel = new AppCache($kernel);
详情请阅读Symfony http cache