HomeSort by relevance Sort by last modified time
    Searched refs:memcache (Results 1 - 2 of 2) sorted by null

  /external/webkit/WebKitTools/QueueStatusServer/model/
attachment.py 31 from google.appengine.api import memcache namespace
40 memcache.delete(str(attachment_id), namespace="attachment-summary")
67 self._summary = memcache.get(str(self.id), namespace="attachment-summary")
71 memcache.set(str(self.id), self._summary, namespace="attachment-summary")
  /development/scripts/app_engine_server/
memcache_zipserve.py 18 """A class to serve pages from zip files and use memcache for performance.
21 class to serve HTTP GET requests. Memcache is used to increase response speed
37 from google.appengine.api import memcache namespace
89 put into memcache, which is much faster than retreiving them from the zip
95 CACHE_PREFIX = 'cache://' # memcache key prefix for actual URLs
96 NEG_CACHE_PREFIX = 'noncache://' # memcache key prefix for non-existant URL
283 # see if we have the page in the memcache
293 # IF we have the file, put it in the memcache
345 Get the file from the source, it must not have been in the memcache. If
512 """Get file from memcache, if available
    [all...]

Completed in 1321 milliseconds