Set maxsize to 32MB in lru_cache() for reasonable memory usage

This commit is contained in:
Madhav Kumar 2024-03-21 06:48:22 +05:30 committed by GitHub
parent 5fc82399bf
commit 104affb51a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -141,7 +141,7 @@ def path_tuple_to_string(path: tuple) -> str:
For get_load_path_str(),
introducing a simple caching mechanism to avoid recomputing regex matches for paths that have already been processed.
"""
@lru_cache(maxsize=None)
@lru_cache(maxsize=32) # Set maxsize to 32MB
def get_load_path_str_cached(
init_path_str: str,
load_rename_rules: Optional[list[tuple[str, str]]] = None,