You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Store TMDB entries in the database in order to avoid pulling each entry from cache.
Currently pulling them from cache causes slow "My/All Issues" load when multiple items exist
Implementation ideas
After grabbing the Arr database via API, do the following:
Fetch Conreq's currently stored model of the Arr database
Calculate the difference and delete any IDs that have been removed
Calculate the intersection and call MODEL_NAME.objects.bulk_update on anything pre-existing
Call MODEL_NAME.objects.bulk_create on anything new
The text was updated successfully, but these errors were encountered:
Store TMDB entries in the database in order to avoid pulling each entry from cache.
Currently pulling them from cache causes slow "My/All Issues" load when multiple items exist
Implementation ideas
After grabbing the Arr database via API, do the following:
The text was updated successfully, but these errors were encountered: