Tweak cache size

This commit is contained in:
Thomas Sileo 2022-08-26 18:58:21 +02:00
parent eb9a6024a8
commit edf9e28ed1
1 changed files with 2 additions and 1 deletions

View File

@ -70,7 +70,8 @@ from app.utils.emoji import EMOJIS_BY_NAME
from app.utils.url import check_url
from app.webfinger import get_remote_follow_template
_RESIZED_CACHE: MutableMapping[tuple[str, int], tuple[bytes, str, Any]] = LFUCache(32)
# Only images <1MB will be cached, so 64MB of data will be cached
_RESIZED_CACHE: MutableMapping[tuple[str, int], tuple[bytes, str, Any]] = LFUCache(64)
# TODO(ts):