Slide 66
Slide 66 text
use Symfony\Component\HttpFoundation\Response;
!
$response = new Response(‘Hello World!’, 200, array(‘content-type’
=> ‘text/html’));
!
$response->setCache(array(
‘etag’ => ‘a_unique_id_for_this_resource’,
‘last_modified’ => new DateTime(),
‘max_age’ => 600,
‘s_maxage’ => 600,
‘private’ => false,
‘public’ => true,
));