Raise the default max-age for client side caching to 43200 (12hrs).

Change-Id: I163bf926994928ceafa66b853ed5c2e9731c7f93
This commit is contained in:
Dirk Dougherty
2013-09-30 13:19:37 -07:00
parent fe32c3ad53
commit cb2e8d0fe8

View File

@@ -94,7 +94,7 @@ class MemcachedZipHandler(webapp.RequestHandler):
source file again. It also uses considerably fewer CPU cycles.
"""
zipfile_cache = {} # class cache of source zip files
MAX_AGE = 600 # max client-side cache lifetime
MAX_AGE = 43200 # max client-side cache lifetime, in seconds
PUBLIC = True # public cache setting
CACHE_PREFIX = 'cache://' # memcache key prefix for actual URLs
NEG_CACHE_PREFIX = 'noncache://' # memcache key prefix for non-existant URL