We are developing a big Website, and all our Images and Resources are in Amazon S3. We are also using Cloudfront to globally distribute our Content. What we want to to, is to tell the Clients Web Browser to cache our Files, because when we change them, we also will change the URL (Cloudfront does not reflect the change for 24 Hours elsewhere).

We are currently using ETags but this is not optimal becaue the Client still has to do the Request to check if the Resource has changed.

One Solution would be the Expires Header, but we did not find a way to set it relative to the current Date like possible in the Apache Configuration for S3, and we cannot update all Content regularly, because it is pretty much. So we would need a Configuration Option that sets the Expires Header to a Date relative to the current Date for all Content.

Another Solution would be to set Cache-Control: max-age to a certain Value. Does this work? Is it accepted by major Browsers? Will I destroy some caching Algorithms with this? Why does YSlow recommend to set the Expires header but not Cache-Control: max-age?

Any other Recommendations? We are compressing CSS and JS, using Sprites where it is plausible, setting Expires headers and ETags where it is possible, and will soon compress our Images with the Yahoo Compression Tool and gzipping Output.

link|improve this question

feedback

2 Answers

I can only speak from my own experience, but when I was using CloudFront for a project the best approach I came up with was to assume that the cached resources will live forever. I made the latest SVN revision part of the name of the path. So all static resources were organized with the following structure

http://static.example.com/$rev/images/logo.jpg
and
http://static.example.com/$rev/css/site.css

All of the CSS was written with relative URLs and the web projects had a compile time flag for the "static resource version" so updating the static resources was simply a matter of updating a compile flag. Now in my case the application was sending out HTML formatted emails which all needed to be rendered appropriately in email clients, so if an email was sent when the static resources where at version 1003 then that version was baked into the generated HTML, and because our application had the ability to retrieve the exact message that was sent after it was composed I needed to make sure that the CSS was properly separated so that a message with one version of the static resources could load inside of a div that was part of a page with newer static resources. This may not be your situation, but it required careful thought.

Good luck!

link|improve this answer
This does absolutely NOT answer the Question. We are already assuming that the resources live forever. We only want to try and leverage client side caching. Good try to get the bounty though. – Paul Weber Feb 16 '11 at 7:52
Eh, it had 14 hours to go with no replies so I figured I'd at least throw two cents in. No hard feeling though, best of luck on your project. – Jason Sperske Feb 16 '11 at 21:16
feedback
up vote 1 down vote accepted

We did some research on ourself. Seems like the Cache-Control Header does help with telling Cloudfront or a Proxy to set a valid Expires header, but only sometimes ...

We are currently writing a Cron Job to update all Headers in the S3 regularly, because that is one thing that works for sure. Seems like there is no other way. I will keep you posted if there is.

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.