mirror of
https://github.com/jiojciojsioe3/a3cjroijsiojiorj.git
synced 2024-11-15 07:21:50 +08:00
add view caching
This commit is contained in:
parent
ca85bc1b2d
commit
d92cd6f3a2
10
app.py
10
app.py
@ -4,12 +4,19 @@ from __future__ import division
|
|||||||
|
|
||||||
import json
|
import json
|
||||||
import sqlite3
|
import sqlite3
|
||||||
|
import tempfile
|
||||||
import re
|
import re
|
||||||
import os
|
import os
|
||||||
from flask import Flask, g, jsonify, render_template, request, abort, redirect
|
from flask import Flask, g, jsonify, render_template, request, abort, redirect
|
||||||
|
from flask_caching import Cache
|
||||||
from ffmpy import FFmpeg
|
from ffmpy import FFmpeg
|
||||||
|
|
||||||
app = Flask(__name__)
|
app = Flask(__name__)
|
||||||
|
try:
|
||||||
|
app.cache = Cache(app, config={'CACHE_TYPE': 'redis'})
|
||||||
|
except RuntimeError:
|
||||||
|
app.cache = Cache(app, config={'CACHE_TYPE': 'filesystem', 'CACHE_DIR': tempfile.gettempdir()})
|
||||||
|
|
||||||
DATABASE = 'taiko.db'
|
DATABASE = 'taiko.db'
|
||||||
DEFAULT_URL = 'https://github.com/bui/taiko-web/'
|
DEFAULT_URL = 'https://github.com/bui/taiko-web/'
|
||||||
|
|
||||||
@ -149,6 +156,7 @@ def route_index():
|
|||||||
|
|
||||||
|
|
||||||
@app.route('/api/preview')
|
@app.route('/api/preview')
|
||||||
|
@app.cache.cached(timeout=15)
|
||||||
def route_api_preview():
|
def route_api_preview():
|
||||||
song_id = request.args.get('id', None)
|
song_id = request.args.get('id', None)
|
||||||
if not song_id or not re.match('^[0-9]+$', song_id):
|
if not song_id or not re.match('^[0-9]+$', song_id):
|
||||||
@ -167,6 +175,7 @@ def route_api_preview():
|
|||||||
|
|
||||||
|
|
||||||
@app.route('/api/songs')
|
@app.route('/api/songs')
|
||||||
|
@app.cache.cached(timeout=15)
|
||||||
def route_api_songs():
|
def route_api_songs():
|
||||||
songs = query_db('select * from songs where enabled = 1')
|
songs = query_db('select * from songs where enabled = 1')
|
||||||
|
|
||||||
@ -210,6 +219,7 @@ def route_api_songs():
|
|||||||
|
|
||||||
|
|
||||||
@app.route('/api/config')
|
@app.route('/api/config')
|
||||||
|
@app.cache.cached(timeout=15)
|
||||||
def route_api_config():
|
def route_api_config():
|
||||||
config = get_config()
|
config = get_config()
|
||||||
return jsonify(config)
|
return jsonify(config)
|
||||||
|
Loading…
Reference in New Issue
Block a user