I'm wondering what the best practice is for caching static content like an about page. In this case there could not be an actual action if using a matcher like
match 'about' => 'home#about'
This entire page could be cached, except that the layout includes a header that is unique to the user session. So using :layout => false would work as everything in the action can be cached, just not the layout.
I've used
caches_action :about, :layout => false
in the HomeController but I'm not convinced it's actually caching as the server reports 'Rendered' and it consistently takes 300-400ms.
What is the typical way of caching this type of content?