Spaces:
Sleeping
Sleeping
Upload cache.py with huggingface_hub
Browse files
cache.py
CHANGED
|
@@ -39,5 +39,6 @@ class TTLCache:
|
|
| 39 |
# 全局缓存实例
|
| 40 |
arxiv_cache = TTLCache(ttl_seconds=1800) # 论文元信息: 30 分钟
|
| 41 |
s2_cache = TTLCache(ttl_seconds=1800) # S2 搜索结果: 30 分钟
|
|
|
|
| 42 |
github_readme_cache = TTLCache(ttl_seconds=3600) # GitHub README: 1 小时
|
| 43 |
github_deps_cache = TTLCache(ttl_seconds=3600) # GitHub 依赖: 1 小时
|
|
|
|
| 39 |
# 全局缓存实例
|
| 40 |
arxiv_cache = TTLCache(ttl_seconds=1800) # 论文元信息: 30 分钟
|
| 41 |
s2_cache = TTLCache(ttl_seconds=1800) # S2 搜索结果: 30 分钟
|
| 42 |
+
github_search_cache = TTLCache(ttl_seconds=900) # GitHub 搜索结果: 15 分钟
|
| 43 |
github_readme_cache = TTLCache(ttl_seconds=3600) # GitHub README: 1 小时
|
| 44 |
github_deps_cache = TTLCache(ttl_seconds=3600) # GitHub 依赖: 1 小时
|