flask-caching
1 . 安裝
pip install flask-caching
2. 初始化
// 初始化 定義 from flask cache import Cache cache =Cache(config={ 'CACHE_TYPE': 'simple', # 頁面快取型別 })
cache.init app(app=app) # 初始化
3. 使用
// 在檢視函式上新增快取 @blue.route('/') @cache.cached(timeout=30) def home(): print('載入資料') return 'home