On Mon, Jul 25, 2011 at 5:13 PM, Ludvig Ericson <[email protected]> wrote: > Hi Barry, and thank you for your quick reply. > Yes, I found Cache-Control: private too now that I looked a little more > closely, but I guess I want to avoid a workaround: the HTTP 1.1 RFC says > "private" should be used for non-shared data, while this really is shared > data! Setting the cache control to private will also mean intranets, ISPs > and suchlike won't be caching anymore, which is a situation I would rather > avoid. > Is there really no way to disable the reverse caching behavior?
Use s-maxage to set a shared cache time of 1 hour, overriding the private cache time of 24 hours. http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9.3 -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
