Merge pull request #467 from SuanmoSuanyangTechnology/fix/api-service
[changes]
This commit is contained in:
4
api/app/cache/__init__.py
vendored
4
api/app/cache/__init__.py
vendored
@@ -4,10 +4,8 @@ Cache 缓存模块
|
|||||||
提供各种缓存功能的统一入口
|
提供各种缓存功能的统一入口
|
||||||
注意:隐性记忆和情绪建议已迁移到数据库存储,不再使用Redis缓存
|
注意:隐性记忆和情绪建议已迁移到数据库存储,不再使用Redis缓存
|
||||||
"""
|
"""
|
||||||
from .memory import EmotionMemoryCache, ImplicitMemoryCache, InterestMemoryCache
|
from .memory import InterestMemoryCache
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"EmotionMemoryCache",
|
|
||||||
"ImplicitMemoryCache",
|
|
||||||
"InterestMemoryCache",
|
"InterestMemoryCache",
|
||||||
]
|
]
|
||||||
|
|||||||
4
api/app/cache/memory/__init__.py
vendored
4
api/app/cache/memory/__init__.py
vendored
@@ -4,12 +4,8 @@ Memory 缓存模块
|
|||||||
提供记忆系统相关的缓存功能
|
提供记忆系统相关的缓存功能
|
||||||
注意:隐性记忆和情绪建议已迁移到数据库存储,不再使用Redis缓存
|
注意:隐性记忆和情绪建议已迁移到数据库存储,不再使用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