This commit is contained in:
jxxghp
2023-08-02 10:10:40 +08:00
parent 99ed6fd163
commit a87942c8f6
2 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,6 @@
import json
import re
import gc
from datetime import datetime
from typing import Dict, List, Optional, Union, Tuple
@ -415,6 +416,9 @@ class SubscribeChain(ChainBase):
self.__match(torrents_cache)
# 保存缓存到本地
self.save_cache(torrents_cache, self._cache_file)
# 主动资源回收
del torrents_cache
gc.collect()
def __match(self, torrents_cache: Dict[str, List[Context]]):
"""