This is a simple decorator which caches the result of a function call for the specified number of seconds, using Django's caching mechanism.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | from hashlib import sha1
from django.core.cache import cache as _djcache
def cache(seconds = 900):
"""
Cache the result of a function call for the specified number of seconds,
using Django's caching mechanism.
Assumes that the function never returns None (as the cache returns None to indicate a miss), and that the function's result only depends on its parameters.
Note that the ordering of parameters is important. e.g. myFunction(x = 1, y = 2), myFunction(y = 2, x = 1), and myFunction(1,2) will each be cached separately.
Usage:
@cache(600)
def myExpensiveMethod(parm1, parm2, parm3):
....
return expensiveResult
`
"""
def doCache(f):
def x(*args, **kwargs):
key = sha1(str(f.__module__) + str(f.__name__) + str(args) + str(kwargs)).hexdigest()
result = _djcache.get(key)
if result is None:
result = f(*args, **kwargs)
_djcache.set(key, result, seconds)
return result
return x
return doCache
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 2 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 3 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Please login first before commenting.