feat: auto-reload grid when background cache refresh completes
Docker / docker (push) Successful in 1m49s

Poll /api/cache-ts every 30s; silently reload concerts if the
cache timestamp increased (background scrape finished).

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
dev
2026-05-15 17:03:30 +02:00
parent d3ce89f228
commit 0173681786
2 changed files with 23 additions and 0 deletions
+6
View File
@@ -90,6 +90,12 @@ async def api_concerts(page: int = 1, search: str = "", page_size: int = 24, cat
return await fetch_concerts(page=page, search=search, page_size=page_size, category=category)
@app.get("/api/cache-ts")
async def api_cache_ts():
from arte_api import _cache
return {"ts": _cache["ts"], "count": len(_cache["data"])}
@app.post("/api/refresh")
async def api_refresh():
count = await invalidate_cache()