I'm managing a website which requires a little speed up. If we do a quick search there's tones of info like, expires header, last-mod header, gzip, blablabla.
Now am trying the see the Expires header in action...
I have a CSS test.css which is returning as example a last-modified of yesterday and a expires one year from now.
I read from Google speed-up docs
http://code.google.com/speed/page-speed/docs/caching.html#LeverageBrowserCaching
"Expires and Cache-Control: max-age ... the browser will not issue any GET requests for the resource until the expiry date or maximum age is reached."
I was expecting at a second refresh not seeing a test.css GET refresh at my apache log.
QUESTION: when setting a future Expires date, does the browser send a GET request to the server or not? If yes. What's the point of Expires then?
Thanks,