flask-cache
flask-cache copied to clipboard
Improve documentation: clarify if route decorator is before or after cache decorator
Correct usage is ?
@route("/") @cache.cached(timeout=50) def index(): return render_template('index.html')
or
@cache.cached(timeout=50) @route("/") def index(): return render_template('index.html')