惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

小众软件
小众软件
博客园 - Franky
罗磊的独立博客
G
Google Developers Blog
The GitHub Blog
The GitHub Blog
P
Proofpoint News Feed
Recent Announcements
Recent Announcements
V
V2EX
F
Fortinet All Blogs
阮一峰的网络日志
阮一峰的网络日志
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
U
Unit 42
GbyAI
GbyAI
A
About on SuperTechFans
WordPress大学
WordPress大学
Engineering at Meta
Engineering at Meta
雷峰网
雷峰网
Microsoft Azure Blog
Microsoft Azure Blog
Martin Fowler
Martin Fowler
D
DataBreaches.Net
The Cloudflare Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
MongoDB | Blog
MongoDB | Blog

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
fix(memory-core): harden singleton cache recovery (#70925...
Patrick-Eric · 2026-04-24 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -46,6 +46,25 @@ describe("manager cache", () => {

4646

);

4747

});

4848
49+

it("repairs an invalid singleton cache shape", async () => {

50+

const cacheKey = Symbol("openclaw.manager-cache.corrupt-test");

51+

(globalThis as Record<PropertyKey, unknown>)[cacheKey] = {};

52+
53+

const cache = resolveSingletonManagedCache<TestEntry>(cacheKey);

54+

cachesForCleanup.push(cache);

55+

const entry = await getOrCreateManagedCacheEntry({

56+

cache: cache.cache,

57+

pending: cache.pending,

58+

key: "same",

59+

create: async () => createEntry("repaired"),

60+

});

61+
62+

expect(entry.id).toBe("repaired");

63+

expect(cache.cache).toBeInstanceOf(Map);

64+

expect(cache.pending).toBeInstanceOf(Map);

65+

delete (globalThis as Record<PropertyKey, unknown>)[cacheKey];

66+

});

67+
4968

it("deduplicates concurrent creation for the same cache key", async () => {

5069

const cache = createTestCache();

5170

cachesForCleanup.push(cache);

Original file line numberDiff line numberDiff line change

@@ -10,10 +10,24 @@ export type ManagedCache<T> = {

1010

};

1111
1212

export function resolveSingletonManagedCache<T>(cacheKey: symbol): ManagedCache<T> {

13-

return resolveGlobalSingleton<ManagedCache<T>>(cacheKey, () => ({

13+

const resolved = resolveGlobalSingleton<unknown>(cacheKey, () => ({

1414

cache: new Map<string, T>(),

1515

pending: new Map<string, Promise<T>>(),

1616

}));

17+

if (

18+

typeof resolved === "object" &&

19+

resolved !== null &&

20+

(resolved as Partial<ManagedCache<T>>).cache instanceof Map &&

21+

(resolved as Partial<ManagedCache<T>>).pending instanceof Map

22+

) {

23+

return resolved as ManagedCache<T>;

24+

}

25+

const repaired: ManagedCache<T> = {

26+

cache: new Map<string, T>(),

27+

pending: new Map<string, Promise<T>>(),

28+

};

29+

(globalThis as Record<PropertyKey, unknown>)[cacheKey] = repaired;

30+

return repaired;

1731

}

1832
1933

export async function getOrCreateManagedCacheEntry<T>(params: {

Original file line numberDiff line numberDiff line change

@@ -214,6 +214,25 @@ beforeEach(async () => {

214214

});

215215
216216

describe("getMemorySearchManager caching", () => {

217+

it("repairs an invalid shared singleton cache shape before using qmd cache maps", async () => {

218+

await closeAllMemorySearchManagers();

219+

vi.resetModules();

220+

const cacheKey = Symbol.for("openclaw.memorySearchManagerCache");

221+

(globalThis as Record<PropertyKey, unknown>)[cacheKey] = {};

222+
223+

const freshModule = await import("./search-manager.js");

224+

try {

225+

const result = await freshModule.getMemorySearchManager({

226+

cfg: createQmdCfg("corrupt-cache-agent"),

227+

agentId: "corrupt-cache-agent",

228+

});

229+

requireManager(result);

230+

} finally {

231+

await freshModule.closeAllMemorySearchManagers();

232+

delete (globalThis as Record<PropertyKey, unknown>)[cacheKey];

233+

}

234+

});

235+
217236

it("reuses the same QMD manager instance for repeated calls", async () => {

218237

const cfg = createQmdCfg("main");

219238
Original file line numberDiff line numberDiff line change

@@ -42,15 +42,30 @@ type MemorySearchManagerCacheStore = {

4242

pendingQmdManagerCreates: Map<string, PendingQmdManagerCreate>;

4343

};

4444
45+

function createMemorySearchManagerCacheStore(): MemorySearchManagerCacheStore {

46+

return {

47+

qmdManagerCache: new Map<string, CachedQmdManagerEntry>(),

48+

pendingQmdManagerCreates: new Map<string, PendingQmdManagerCreate>(),

49+

};

50+

}

51+
4552

function getMemorySearchManagerCacheStore(): MemorySearchManagerCacheStore {

4653

// Keep caches reachable across `vi.resetModules()` so later cleanup can close older instances.

47-

return resolveGlobalSingleton<MemorySearchManagerCacheStore>(

54+

const resolved = resolveGlobalSingleton<unknown>(

4855

MEMORY_SEARCH_MANAGER_CACHE_KEY,

49-

() => ({

50-

qmdManagerCache: new Map<string, CachedQmdManagerEntry>(),

51-

pendingQmdManagerCreates: new Map<string, PendingQmdManagerCreate>(),

52-

}),

56+

createMemorySearchManagerCacheStore,

5357

);

58+

if (

59+

typeof resolved === "object" &&

60+

resolved !== null &&

61+

(resolved as Partial<MemorySearchManagerCacheStore>).qmdManagerCache instanceof Map &&

62+

(resolved as Partial<MemorySearchManagerCacheStore>).pendingQmdManagerCreates instanceof Map

63+

) {

64+

return resolved as MemorySearchManagerCacheStore;

65+

}

66+

const repaired = createMemorySearchManagerCacheStore();

67+

(globalThis as Record<PropertyKey, unknown>)[MEMORY_SEARCH_MANAGER_CACHE_KEY] = repaired;

68+

return repaired;

5469

}

5570
5671

const log = createSubsystemLogger("memory");