# coding: utf-8 """Simple callcache implementation. The CallCache does not using lock because we assume that all function result to be cached will be the same in multiple calls, and do not take any heavy costs, so the function which to be cached may be called multiple times in multi thread scenario. """ from __future__ import absolute_import, division, print_function, unicode_literals import threading from functools import wraps __author__ = 'anlong ' class CallCache(object): def __init__(self): self.cache = {} def __call__(self, func): @wraps(func) def callee(): # notice: do not support functions with arguments by design, for prevent cache flood DoS. key = func.__name__ if key in self.cache: result = self.cache.get(key) else: result = func() self.cache[key] = result return result return callee callcache = CallCache()