Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to optimize page serving time on Google app engine, but I'm struggling at getting the effect I want.

in my app.yaml, I used the following directive:

handlers:
- url: /assets
  static_dir: assets
  expiration: 7d

under the asset folder, I have all my images, css and js. By using the 7d expiration, I would have expected the browser to use the local cached files and not come to my app for 7 days.

Although, in the response headers for my assets I get the following:

Cache-Control:public, max-age=604800
Cache-Control:no-cache, must-revalidate

I understand that with these headers, the browser will check on my app if the file as changed before releasing the cached version. (I can effectively see a bunch of 304 corresponding to my files under the asset folder, for both refresh and simple page load).

Is there a way in Google app engine to configure the cache behavior so the browser will not comeback for those files for 7d (on a simple page load), as specified in the expiration? (i.e. removing the "no-cache" from cache-control header)

P.S. I dont want to enable PageSpeed on my app. I want full control on the html served.

share|improve this question
I'm finding PageSpeed caches private information from ajax requests! I'm trying to set cache control: No-store but I still get cache control: private – ZiglioNZ May 3 at 2:11

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.