increase redis cache for svg and css from 1 week to 4 weeks (#1194)

This commit is contained in:
Shuchang Zheng
2024-11-14 12:05:47 -08:00
committed by GitHub
parent 6eeaa583ff
commit 1064a7efdb

View File

@@ -2,7 +2,7 @@ from abc import ABC, abstractmethod
from datetime import timedelta
from typing import Any
CACHE_EXPIRE_TIME = timedelta(weeks=1)
CACHE_EXPIRE_TIME = timedelta(weeks=4)
MAX_CACHE_ITEM = 1000