feat: in memory cache

This commit is contained in:
2025-12-05 00:51:02 +00:00
parent 3e8965de6f
commit 3a9250f5b0
6 changed files with 615 additions and 26 deletions
+4
View File
@@ -39,5 +39,9 @@ def inject_env_vars():
register_routes(app)
init_db(app)
# Start cache pre-warming in background
from routes import prewarm_cache
prewarm_cache(app)
if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000, debug=True)