4

我想使用 Flask-Cache 来缓存不是视图的函数的结果。但是,它似乎只有在我装饰视图功能时才有效。Flask-Cache 可以用来缓存“正常”功能吗?

如果我装饰视图函数,缓存会起作用。

cache = Cache(app,config={'CACHE_TYPE': 'simple'})

@app.route('/statistics/', methods=['GET'])
@cache.cached(timeout=500, key_prefix='stats')
def statistics():
    return render_template('global/application.html') # caching works here

如果我装饰一个“普通”函数并从视图中调用它,它就不起作用。

class Foo(object):
    @cache.cached(timeout=10, key_prefix='filters1')
    def simple_method(self):
        a = 1
        return a  # caching NOT working here  



@app.route('/statistics/filters/', methods=['GET'])
def statistics_filter():
    Foo().simple_method()

如果我key_prefix对两个功能都使用相同的功能,它也可以工作。我认为这是一个线索,表明它自己的缓存正在正确初始化,但我调用简单方法或定义它的方式是错误的。

4

1 回答 1

0

我认为你需要在你simple_method的 Flask-Cache 中返回一些东西来缓存返回值。我怀疑它只会找出您方法中要自行缓存的变量。

另一件事是您需要一个单独的函数来计算和缓存您的结果,如下所示:

def simple_method(self):
    @cache.cached(timeout=10, key_prefix='filters1')
    def compute_a():
        return a = 1
    return compute_a()

如果要缓存方法,请使用memoize

于 2015-10-12T06:18:20.173 回答