Targeted-search backoff and release-date gating (#90)
ci / web (push) Successful in 25s
e2e / e2e (push) Successful in 46s
ci / rust (push) Successful in 2m9s

This commit was merged in pull request #90.
This commit is contained in:
2026-08-23 00:42:13 +01:00
parent 0585811a0c
commit e01505bd53
9 changed files with 557 additions and 62 deletions
@@ -0,0 +1,4 @@
-- TMDB's earliest digital release date is the gate for targeted searches
-- (§6.2). Keep it with title metadata so a newly announced date resets the
-- search backoff.
ALTER TABLE movies ADD COLUMN digital_release TEXT;
@@ -0,0 +1,5 @@
-- Bounds how often targeted search pays for a TMDB call per movie,
-- independent of the search backoff schedule (§6.2): a title on a
-- day-long backoff, or one with no digital release date yet, must not
-- cost a TMDB call every 30 s tick.
ALTER TABLE movies ADD COLUMN metadata_refreshed_at TEXT;