fix(TMDB): adjust trending cache maxsize to 1024

This commit is contained in:
InfinityPacer
2025-01-18 23:45:03 +08:00
parent ad0241b7f1
commit ff5d94782f
@@ -6,7 +6,7 @@ from ..tmdb import TMDb
class Trending(TMDb): class Trending(TMDb):
_urls = {"trending": "/trending/%s/%s"} _urls = {"trending": "/trending/%s/%s"}
@cached(maxsize=1, ttl=43200) @cached(maxsize=1024, ttl=43200)
def _trending(self, media_type="all", time_window="day", page=1): def _trending(self, media_type="all", time_window="day", page=1):
""" """
Get trending, TTLCache 12 hours Get trending, TTLCache 12 hours