Merge pull request #469 from SuanmoSuanyangTechnology/fix/bug
[fix] Remove the unused ones
This commit is contained in:
5
api/app/cache/__init__.py
vendored
5
api/app/cache/__init__.py
vendored
@@ -2,12 +2,9 @@
|
|||||||
Cache 缓存模块
|
Cache 缓存模块
|
||||||
|
|
||||||
提供各种缓存功能的统一入口
|
提供各种缓存功能的统一入口
|
||||||
注意:隐性记忆和情绪建议已迁移到数据库存储,不再使用Redis缓存
|
|
||||||
"""
|
"""
|
||||||
from .memory import EmotionMemoryCache, ImplicitMemoryCache, InterestMemoryCache
|
from .memory import InterestMemoryCache
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"EmotionMemoryCache",
|
|
||||||
"ImplicitMemoryCache",
|
|
||||||
"InterestMemoryCache",
|
"InterestMemoryCache",
|
||||||
]
|
]
|
||||||
|
|||||||
5
api/app/cache/memory/__init__.py
vendored
5
api/app/cache/memory/__init__.py
vendored
@@ -2,14 +2,9 @@
|
|||||||
Memory 缓存模块
|
Memory 缓存模块
|
||||||
|
|
||||||
提供记忆系统相关的缓存功能
|
提供记忆系统相关的缓存功能
|
||||||
注意:隐性记忆和情绪建议已迁移到数据库存储,不再使用Redis缓存
|
|
||||||
"""
|
"""
|
||||||
from .emotion_memory import EmotionMemoryCache
|
|
||||||
from .implicit_memory import ImplicitMemoryCache
|
|
||||||
from .interest_memory import InterestMemoryCache
|
from .interest_memory import InterestMemoryCache
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"EmotionMemoryCache",
|
|
||||||
"ImplicitMemoryCache",
|
|
||||||
"InterestMemoryCache",
|
"InterestMemoryCache",
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user