Targeted-search backoff and release-date gating (#90)
This commit was merged in pull request #90.
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user