Hi,
fist of all i have to say "ultra great work!"
Now my question:
if i cache a static file, all will be fine. but if i cache a file,
crated by a cms, it only works with local host and after deployment to
gae, the file will not cached. it should be cached for 24 hours
local header
-----------------
Server Development/1.0
Date Fri, 04 Mar 2011 20:54:35 GMT
X-Powered-By PHP/5.2.13
Set-Cookie PHPSESSID=a9a519f7561c070d57dfd3b39e008b98; expires=Fri, 11-
Mar-2011 20:32:52 GMT; path=/
Vary Accept-Encoding
Connection close
Pragma no-cache
Cache-Control no-store, no-cache, must-revalidate, post-check=0, pre-
check=0, max-age=29030401, proxy-revalidate
Content-Type text/html; charset=UTF-8
Last-Modified Fri, 04 Mar 2011 20:32:17 GMT
Expires Sat, 05 Mar 2011 20:32:17 GMT
Content-Length 18304
gae header
----------------
X-Powered-By PHP/5.2.13
Set-Cookie PHPSESSID=c05b9bc83c25dbfd1dc366624f4ca797; expires=Fri, 11-
Mar-2011 20:14:50 GMT; path=/
Vary Accept-Encoding
Pragma no-cache
Cache-Control no-store, no-cache, must-revalidate, post-check=0, pre-
check=0,max-age=29030401, proxy-revalidate
Content-Type text/html; charset=UTF-8
Last-Modified Fri, 04 Mar 2011 20:14:50 GMT
Expires Fri, 04 Mar 2011 20:56:15 GMT
Content-Encoding gzip
Date Fri, 04 Mar 2011 20:56:15 GMT
Server Google Frontend
Content-Length 3815
my confic.py
------------------
class Inside(cache.Service):
origin = '
http://gadgets-apps-widgets.com'
forceTTL = 86400
headerBlacklist = ['x-google-cache-control', 'set-cookie',
'vary']
Is there a way to tell gae: please cache this file
If the answer includes flush object, please explain how to ;-)