DeleteMemory 删除 Memory
(ctx context.Context, namespace, key string)
| 193 | |
| 194 | // DeleteMemory 删除 Memory |
| 195 | func (m *Manager) DeleteMemory(ctx context.Context, namespace, key string) error { |
| 196 | return m.store.Delete(ctx, namespace, key) |
| 197 | } |
| 198 | |
| 199 | // GetStats 获取统计信息 |
| 200 | func (m *Manager) GetStats(ctx context.Context, namespace string) (*MemoryStats, error) { |