Yao Xiong

Results 3 comments of Yao Xiong

I just ran into this defect, and it is as yaph describes. The method signatures do not match. flask-cache is instantiating werkzeug's FileSystemCache as ``` cache_obj(app, config, cache_args, cache_options) ```...

FYI, this is how I'm initializing the cache: ``` cache = Cache(app=app, config={'CACHE_TYPE': 'FileSystemCache', 'CACHE_DIR': '/tmp'}) ```

Nevermind, I just re-read the docs, I was using `FileSystemCache` instead of `filesystem`. All is good now.