I'm using CloudFlare CDN on my Rails 3.1 application. Cloudflare is a CDN that works at the DNS level. On the first hit to a static asset, CloudFlare loads it from your app then caches it in their CDN. Future requests for that asset load from the CDN instead of your app.

The problem I'm having is that if you set controller caching to true:

config.action_controller.perform_caching = true

it enables the Rack::Cache middleware. Since Rails sets a default cache control setting for static assets, those assets get written to the Rails.cache store. As a result my cache store (in my case redis) is being filled up with static assets with the url as the hash key.

Unfortunately, I can't turn off the static asset cache control headers without affecting how Cloudflare and my users' browsers cache the assets. I can't turn off controller caching or I lose page/action/fragment caching. Same result if I delete the Rack::Cache middleware.

Does anyone have any other ideas?

Update: I've opened a ticket on GitHub here.

link|improve this question

78% accept rate
When you say static assets do you mean just the files that Sprockets generates? – Devin M Aug 9 '11 at 23:01
Yes, I do. With the hash appended to the file names. – Jack Chu Aug 9 '11 at 23:06
feedback

2 Answers

up vote 9 down vote accepted

After a lot of experimentation, I've ended up doing this in my config/application.rb:

if !Rails.env.development? && !Rails.env.test?
  config.middleware.insert_before Rack::Cache, Rack::Static, urls: [config.assets.prefix], root: 'public'
end

What this does is add a Rack::Static rack middleware before requests to Rack::Cache. The Rack::Static middleware serves up urls with a matching prefix to a root directory. Here I'm giving config.assets.prefix as my url prefix which defaults to '/assets.' I'm setting the root to the 'public' directory.

Requests for this path:

/assets/jquery-e8da439bbc8fd345e34ac57c6a216318.min.js

should find it in this file:

public/assets/jquery-e8da439bbc8fd345e34ac57c6a216318.min.js

This should serve any assets directly out of the public/assets directory instead of hitting Rails::Cache at all, which will prevent it from storing the assets in the Rails cache_store. This will only work if you run the 'rake assets:precompile' in production, otherwise there will be no precompiled assets in 'public/assets'.

link|improve this answer
I've posted a blog post about this too here: jackchu.com/rails-31-asset-pipeline-content-delivery-netw – Jack Chu Sep 20 '11 at 23:02
a random aside - how do you get your asset ID to show up in the filename? – Kevin Nov 1 '11 at 20:42
Have you set config.assets.precompile to include all the files you want to precompile? – Aaron Gibralter Nov 21 '11 at 22:27
@Kevin you can set config.action_controller.perform_caching = true in your production.rb guides.rubyonrails.org/asset_pipeline.html#in-production – Schneems Feb 21 at 20:01
feedback

Another way to solve the same problem and this issue is to use the ActionDispatch::Static middleware instead of Rack::Static like this:

if !Rails.env.development? && !Rails.env.test?
  config.middleware.insert_before Rack::Cache, ::ActionDispatch::Static, 'public', config.static_cache_control
end

What's the difference between Rack::Static and ActionDispatch::Static you ask?

  • Rack::Static takes an array of url prefixes to check against the request url. So in our case, it will only check for files if the request path begins with '/assets'.

  • ActionDispatch::Static will check for the existence of the file in 'public' on every GET/HEAD request, regardless of path.

  • Rack::Static doesn't check for the file first, it calls Rack::File.new on the file, so if it doesn't exist it will return a 404, it will not pass the request down the middleware chain.

  • If ActionDispatch::Static doesn't find the file in its path, it'll continue down the rack middleware chain (the rest of the Rails stack).

In the end, whatever ActionDispatch::Static doesn't find in 'public' it'll just pass on down to the Rails stack. So Rails will end up serving the assets that ActionDispatch::Static can't find. This solves my issue of assets not being found by Rack::Cache, but it's also more resource intensive since every request will trigger a file check.

link|improve this answer
When you say "every request will trigger a file check" -- do you mean every request to the app, or only requests to public? – John Bachir Apr 4 at 16:07
Also, in the first bullet point, did you mean to say ActionDispatch::Static? – John Bachir Apr 4 at 16:29
1  
No it's right. Rack::Static takes an array of url prefixes. They key is even called "urls". – Jack Chu Apr 4 at 21:43
what would be super-helpful is if you directly compared the behavior of each solution in each bullet point -- right now that's sort of ambiguous. – John Bachir Apr 4 at 22:22
I was kind of hoping this would get fixed in Rails and that this would just be a temporary fix. I'll see about re-formating it when I get a chance. – Jack Chu Apr 4 at 22:50
feedback

Your Answer

 
or
required, but never shown

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