django-orchestra/orchestra/utils/functional.py

17 lines
530 B
Python
Raw Normal View History

2014-05-08 16:59:35 +00:00
def cached(func):
""" caches func return value """
def cached_func(self, *args, **kwargs):
attr = '_cached_' + func.__name__
2014-07-21 12:20:04 +00:00
key = (args, tuple(kwargs.items()))
try:
return getattr(self, attr)[key]
except KeyError:
value = func(self, *args, **kwargs)
getattr(self, attr)[key] = value
except AttributeError:
value = func(self, *args, **kwargs)
setattr(self, attr, {key: value})
return value
2014-05-08 16:59:35 +00:00
return cached_func