Package wsgitools :: Module middlewares :: Class CachingMiddleware
[hide private]
[frames] | no frames]

Class CachingMiddleware

source code


Caches reponses to requests based on SCRIPT_NAME, PATH_INFO and QUERY_STRING.

Instance Methods [hide private]
 
__init__(self, app, maxage=60, storable=<__builtin__.function object>, cacheable=<__builtin__.function object>)
x.__init__(...) initializes x; see help(type(x)) for signature
source code
 
insert_cache(self, key, obj, now=None) source code
 
prune_cache(self, maxclean=16, now=None) source code
 
__call__(self, environ, start_response)
wsgi interface
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, app, maxage=60, storable=<__builtin__.function object>, cacheable=<__builtin__.function object>)
(Constructor)

source code 

x.__init__(...) initializes x; see help(type(x)) for signature

Parameters:
  • app - is a wsgi application to be cached.
  • maxage (int) - is the number of seconds a reponse may be cached.
  • storable - is a predicate that determines whether the response may be cached at all based on the environ dict.
  • cacheable - is a predicate that determines whether this request invalidates the cache.
Overrides: object.__init__

__call__(self, environ, start_response)
(Call operator)

source code 

wsgi interface

Parameters:
  • environ ({str: str})