I have a quite a big jpg image file and few css files, and these are not going to change for every reload but every time it is loading the full imgae instead of caching in the browser, I tried changing the config like config.action_controller.perform_caching = true etc but nothing seems to help. Is there a way to do that?

link|improve this question

40% accept rate
I'd love an answer for this as well :( – imjp Dec 23 '11 at 3:15
add some bounty.. ^_^ – n00b Dec 26 '11 at 11:15
I think I've already added caching on my app. Read these: devcenter.heroku.com/articles/… I'm not sure if it's browser caching but it is caching my static files! – imjp Dec 26 '11 at 17:47
feedback

1 Answer

This worked for me in my production.rb:

config.serve_static_assets = true
config.static_cache_control = "public, max-age=2419200"

That is 4 weeks which I figure is good enough.

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.