barryvdh / laravel-httpcache

Laravel HTTP Cache
484 stars 41 forks source link

Caching a view #17

Open cemarta7 opened 9 years ago

cemarta7 commented 9 years ago

How can I cache a whole view?

barryvdh commented 9 years ago

Even better, you cache the entire response ;)

cemarta7 commented 9 years ago

I try return Response::view('pages.home',compact('var'))->setTtl(60); then when I refresh I am getting a blank page.

Any idea? could it be my settings?

'options' => array( 'debug' => true, 'default_ttl' => 60000, 'private_headers' => array('Authorization', 'Cookie'), 'allow_reload' => false, 'allow_revalidate' => false, 'stale_while_revalidate' => 2, 'stale_if_error' => 60, ),

ctf0 commented 8 years ago

any updates on this ?