am f2a2c420: am 392ca8fc: am 14dc0e7f: am 2548ceb9: am 8c423d72: Merge "Raise the default max-age for client side caching to 43200 (12hrs)." into jb-mr2-docs

* commit 'f2a2c420f7157cafafc74bea0cdb51b6975b7e91':
  Raise the default max-age for client side caching to 43200 (12hrs).
This commit is contained in:
Dirk Dougherty
2013-10-02 09:44:46 -07:00
committed by Android Git Automerger

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