Home | History | Annotate | Download | only in app_engine_server

Lines Matching defs:get

22 class to serve HTTP GET requests. Memcache is used to increase response speed
78 def get(self, name):
90 """Handles get requests for a given URL.
92 Serves a GET request from a series of zip files. As files are served they are
119 Called 'True' get because it does the work when called from the wrapper
120 class' get method. Some logic is applied to the request to serve files
202 # for processing (so as to get 404 as appropriate). This is needed
241 redirect_data = memcache.get(memcache_key)
515 Get the file from the source, it must not have been in the memcache. If
575 zip_archive = self.zipfile_cache.get(zipfilename)
686 """Get file from memcache, if available.
694 return memcache.get('%s%s' % (self.CACHE_PREFIX, filename))
747 return memcache.get('%s%s' % (self.NEG_CACHE_PREFIX, filename))