2012-01-06 13:50:32 +00:00
|
|
|
# Per request cache middleware
|
|
|
|
|
|
|
|
# Provides a simple cache dictionary only existing for the request's lifetime
|
|
|
|
|
|
|
|
# The middleware provides a threadsafe LocMemCache which can be used just
|
|
|
|
# like any other django cache facility
|
|
|
|
|
|
|
|
from functools import wraps
|
|
|
|
from threading import currentThread
|
|
|
|
from django.core.cache.backends.locmem import LocMemCache
|
|
|
|
|
2018-05-07 16:42:15 +00:00
|
|
|
try:
|
|
|
|
from django.utils.deprecation import MiddlewareMixin
|
|
|
|
except ImportError:
|
|
|
|
# djang0 < 1.10
|
|
|
|
class MiddlewareMixin(object):
|
|
|
|
pass
|
|
|
|
|
2012-01-06 13:50:32 +00:00
|
|
|
_request_cache = {}
|
|
|
|
_installed_middleware = False
|
|
|
|
|
|
|
|
def get_request_cache():
|
|
|
|
assert _installed_middleware, 'RequestCacheMiddleware not loaded'
|
|
|
|
return _request_cache[currentThread()]
|
|
|
|
|
2012-01-26 14:57:55 +00:00
|
|
|
def clear_request_cache():
|
|
|
|
_request_cache[currentThread()].clear()
|
|
|
|
|
2012-01-06 13:50:32 +00:00
|
|
|
class RequestCache(LocMemCache):
|
|
|
|
def __init__(self):
|
|
|
|
name = 'locmemcache@%i' % hash(currentThread())
|
|
|
|
params = dict()
|
|
|
|
super(RequestCache, self).__init__(name, params)
|
|
|
|
|
2018-05-07 16:42:15 +00:00
|
|
|
class RequestCacheMiddleware(MiddlewareMixin):
|
2018-05-07 16:55:41 +00:00
|
|
|
def __init__(self, get_response=None):
|
2012-01-06 13:50:32 +00:00
|
|
|
global _installed_middleware
|
2018-05-07 16:55:41 +00:00
|
|
|
self.get_response = get_response
|
2012-01-06 13:50:32 +00:00
|
|
|
_installed_middleware = True
|
|
|
|
|
|
|
|
def process_request(self, request):
|
|
|
|
cache = _request_cache.get(currentThread()) or RequestCache()
|
|
|
|
_request_cache[currentThread()] = cache
|
|
|
|
|
|
|
|
cache.clear()
|
|
|
|
|
|
|
|
class request_cache(object):
|
|
|
|
""" A decorator for use around functions that should be cached for the current
|
|
|
|
request. Use like this:
|
|
|
|
|
|
|
|
@request_cache()
|
|
|
|
def cached(name):
|
2020-02-12 18:51:41 +00:00
|
|
|
print("My name is %s and I'm cached" % name)
|
2012-01-06 13:50:32 +00:00
|
|
|
|
|
|
|
@request_cache(keyfn=lambda p: p['id'])
|
|
|
|
def cached(param):
|
2020-02-12 18:51:41 +00:00
|
|
|
print("My id is %s" % p['id'])
|
2012-01-06 13:50:32 +00:00
|
|
|
|
|
|
|
If no keyfn is provided the decorator expects the args to be hashable.
|
|
|
|
|
|
|
|
"""
|
|
|
|
|
|
|
|
def __init__(self, keyfn=None):
|
|
|
|
self.keyfn = keyfn or (lambda *args: hash(args))
|
|
|
|
|
|
|
|
def __call__(self, func):
|
|
|
|
|
|
|
|
@wraps(func)
|
|
|
|
def wrapper(*args, **kwargs):
|
|
|
|
cache = get_request_cache()
|
|
|
|
|
|
|
|
cachekey = self.keyfn(*args)
|
|
|
|
cacheval = cache.get(cachekey, 'expired')
|
|
|
|
|
|
|
|
if not cacheval == 'expired':
|
|
|
|
return cacheval
|
|
|
|
|
|
|
|
result = func(*args, **kwargs)
|
|
|
|
cache.set(cachekey, result)
|
|
|
|
|
|
|
|
return result
|
|
|
|
|
|
|
|
return wrapper
|