python 简单类型的Flask-Cache示例
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 简单类型的Flask-Cache示例相关的知识,希望对你有一定的参考价值。
from flask import Flask
from flask_caching import Cache
import random
app = Flask(__name__)
cache = Cache(app, config={'CACHE_TYPE': 'simple'})
@app.route("/route1")
@cache.cached(timeout=10)
def route1():
data = str(random.randint(0,100000)) + '\n'
return data
@app.route("/route2")
@cache.cached(timeout=20)
def route2():
data = str(random.randint(0,100000)) + '\n'
return data
if __name__ == '__main__':
app.run(host='0.0.0.0', port=8098)
以上是关于python 简单类型的Flask-Cache示例的主要内容,如果未能解决你的问题,请参考以下文章
python memoize / cache decorators(另请参阅https://pythonhosted.org/Flask-Cache/#flask.ext.cache.Cache.me
flask-cache使用redis缓存出现的错误
Flask-Cache 怎么缓存动态内容
用 Flask 来写个轻博客 (27) — 使用 Flask-Cache 实现网页缓存加速
Flask 扩展 缓存
通过示例了解 Python 数字和类型转换