up vote 7 down vote favorite
4
share [g+] share [fb]

What would be some advantages of using etags/stale?/fresh_when? instead of page caching (on a file cache)?

Apache automatically handles etags for static files, but even if it didn't, page caching would still be better since the Rails app doesn't even get called.

So, in what instances would I use the methods provided by Rails (stale?/fresh_when?)?

link|improve this question

71% accept rate
I think you mean page caching. caches_page will generate static files for the web server to serve directly. caches_action will cache the entire page content but will still go through the controller so filters can run, etc. – kch May 6 '09 at 22:23
That's right, thanks for the heads up. – Ivan May 6 '09 at 23:12
feedback

3 Answers

up vote 3 down vote accepted

They are really complimentary. Etags/fresh_when etc. help you play nice with downstream caches (like your own Varnish/Squid instances or Rack::Cache or the Browser cache or ISP Proxy Servers…)

Page caching saves you from hitting your rails stack entirely because Apache/your webserver serve the file, so no DB lookups are done. But you have to deal with cache expiration to keep the cache fresh.

Using etags/conditional get, you don't save much processing time since you still need to to get all the records used on the page:

def show
  @article = Article.find(params[:id])
  @feature = Feature.current
  fresh_when :etag => [@article, @feature] 
end

in the case that the user has a current page, it saves you some rendering time and the bandwidth required to send down the page.

link|improve this answer
Two corrections: 1) Mainline Varnish doesn't support ETags, but there's an experimental branch 'experimental-ims' on the source repository in which it's implemented. 2) You can save significant processing time with ETags by storing the ETag value for a given page separately from the data used to calculate its value (this way you don't have to regenerate it which can be more costly because of database fetches). See 'RESTful web services cookbook', section 10.1. – benvolioT Jul 8 '11 at 13:46
feedback

Another use that occurred to me was that you could still process some information before letting Rails hand out the "304 Not Modified" header. Like if you want to record hits to a page.

link|improve this answer
feedback

One thing that comes to mind is that fresh_when will still save you some rendering even if you cleared the entire page cache. Here you'd be using both in tandem.

I'm curious about other answers as well.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.