I\'m trying to use http caching. In my controller I\'m setting a response as follows:
$response->setPublic(); $response->setMaxAge(120); $response->set
The behavior you experience is intended. Symfony2 Docs explicitly describe the situations when private and public are used, default being private.