Exemplo n.º 1
0
def read_cache(key):
    return cache.get(key)
Exemplo n.º 2
0
def get_cache(key, value, timeout=60):
    cache_value = cache.get(key)
    if cache_value is None:
        cache_value = value
        cache.set(key, value, timeout=timeout)
    return cache_value