do caching ourself on /model
This commit is contained in:
parent
64e1b1654f
commit
a79d67adbb
|
@ -1,6 +1,6 @@
|
||||||
import time
|
import time
|
||||||
|
|
||||||
from flask import jsonify
|
from flask import jsonify, request
|
||||||
|
|
||||||
from . import bp
|
from . import bp
|
||||||
from ..helpers.http import cache_control
|
from ..helpers.http import cache_control
|
||||||
|
@ -20,18 +20,27 @@ from ..cache import cache
|
||||||
|
|
||||||
|
|
||||||
@bp.route('/model', methods=['GET'])
|
@bp.route('/model', methods=['GET'])
|
||||||
@cache.cached(timeout=60, query_string=True)
|
|
||||||
def get_model():
|
def get_model():
|
||||||
|
# We will manage caching ourself since we don't want to cache
|
||||||
|
# when the backend is down. Also, Cloudflare won't cache 500 errors.
|
||||||
|
cache_key = 'model_cache::' + request.url
|
||||||
|
cached_response = cache.get(cache_key)
|
||||||
|
|
||||||
|
if cached_response:
|
||||||
|
return cached_response
|
||||||
|
|
||||||
model, error = get_running_model()
|
model, error = get_running_model()
|
||||||
if not model:
|
if not model:
|
||||||
return jsonify({
|
response = jsonify({
|
||||||
'result': None,
|
|
||||||
'code': 502,
|
'code': 502,
|
||||||
'error': 'failed to reach backend',
|
'error': 'failed to reach backend',
|
||||||
'type': error.__class__.__name__
|
'type': error.__class__.__name__
|
||||||
}), 200 # return 200 so Cloudflare caches the response
|
}), 500 # return 500 so Cloudflare doesn't intercept us
|
||||||
else:
|
else:
|
||||||
return jsonify({
|
response = jsonify({
|
||||||
'result': model,
|
'result': model,
|
||||||
'timestamp': int(time.time())
|
'timestamp': int(time.time())
|
||||||
}), 200
|
}), 200
|
||||||
|
cache.set(cache_key, response, timeout=60)
|
||||||
|
|
||||||
|
return response
|
||||||
|
|
Reference in New Issue