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

推荐订阅源

J
Java Code Geeks
G
Google Developers Blog
有赞技术团队
有赞技术团队
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Blog — PlanetScale
Blog — PlanetScale
罗磊的独立博客
博客园 - 聂微东
V
Visual Studio Blog
博客园_首页
D
DataBreaches.Net
腾讯CDC
I
InfoQ
F
Fortinet All Blogs
量子位
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
Google DeepMind News
Google DeepMind News
人人都是产品经理
人人都是产品经理
云风的 BLOG
云风的 BLOG
月光博客
月光博客
Recent Announcements
Recent Announcements
MongoDB | Blog
MongoDB | Blog
C
Check Point 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
perf(gateway): slim current metadata identity cache · ope...
steipete · 2026-05-27 · via Recent Commits to openclaw:main

@@ -12,15 +12,7 @@ import {

1212

import type { PluginMetadataSnapshot } from "./plugin-metadata-snapshot.types.js";

13131414

type CurrentPluginMetadataSnapshotState = ReturnType<typeof getCurrentPluginMetadataSnapshotState>;

15-

type CurrentPluginMetadataConfigCacheEntry = {

16-

configFingerprint: string;

17-

policyHash: string;

18-

};

19-20-

let currentPluginMetadataConfigIdentityCache = new WeakMap<

21-

OpenClawConfig,

22-

CurrentPluginMetadataConfigCacheEntry

23-

>();

15+

let currentPluginMetadataConfigIdentityCache = new WeakSet<OpenClawConfig>();

24162517

export function resolvePluginMetadataControlPlaneFingerprint(

2618

config?: OpenClawConfig,

@@ -49,7 +41,7 @@ export function setCurrentPluginMetadataSnapshot(

4941

workspaceDir?: string;

5042

} = {},

5143

): void {

52-

currentPluginMetadataConfigIdentityCache = new WeakMap();

44+

currentPluginMetadataConfigIdentityCache = new WeakSet();

5345

const compatiblePolicyHashes = snapshot

5446

? options.compatibleConfigs?.map((config) => resolveInstalledPluginIndexPolicyHash(config))

5547

: undefined;

@@ -79,35 +71,22 @@ export function setCurrentPluginMetadataSnapshot(

7971

if (!snapshot) {

8072

return;

8173

}

82-

const env = options.env ?? process.env;

83-

const workspaceDir = options.workspaceDir ?? snapshot.workspaceDir;

8474

if (options.config) {

8575

const policyHash = resolveInstalledPluginIndexPolicyHash(options.config);

86-

currentPluginMetadataConfigIdentityCache.set(options.config, {

87-

policyHash,

88-

configFingerprint: resolvePluginMetadataControlPlaneFingerprint(options.config, {

89-

env,

90-

index: snapshot.index,

91-

policyHash,

92-

workspaceDir,

93-

}),

94-

});

95-

}

96-

for (const [index, config] of (options.compatibleConfigs ?? []).entries()) {

97-

const policyHash = compatiblePolicyHashes?.[index];

98-

const configFingerprint = compatibleConfigFingerprints?.[index];

99-

if (!policyHash || !configFingerprint) {

100-

continue;

76+

if (

77+

policyHash === snapshot.policyHash ||

78+

Boolean(compatiblePolicyHashes?.includes(policyHash))

79+

) {

80+

currentPluginMetadataConfigIdentityCache.add(options.config);

10181

}

102-

currentPluginMetadataConfigIdentityCache.set(config, {

103-

policyHash,

104-

configFingerprint,

105-

});

82+

}

83+

for (const config of options.compatibleConfigs ?? []) {

84+

currentPluginMetadataConfigIdentityCache.add(config);

10685

}

10786

}

1088710988

export function clearCurrentPluginMetadataSnapshot(): void {

110-

currentPluginMetadataConfigIdentityCache = new WeakMap();

89+

currentPluginMetadataConfigIdentityCache = new WeakSet();

11190

clearCurrentPluginMetadataSnapshotState();

11291

}

11392

@@ -118,7 +97,7 @@ export function captureCurrentPluginMetadataSnapshotState(): CurrentPluginMetada

11897

export function restoreCurrentPluginMetadataSnapshotState(

11998

state: CurrentPluginMetadataSnapshotState,

12099

): void {

121-

currentPluginMetadataConfigIdentityCache = new WeakMap();

100+

currentPluginMetadataConfigIdentityCache = new WeakSet();

122101

setCurrentPluginMetadataSnapshotState(

123102

state.snapshot,

124103

state.configFingerprint,

@@ -159,31 +138,28 @@ export function getCurrentPluginMetadataSnapshot(

159138

) {

160139

return undefined;

161140

}

162-

const cachedConfig = params.config && currentPluginMetadataConfigIdentityCache.get(params.config);

163-

const canReuseCachedConfig = cachedConfig !== undefined;

164-

const requestedPolicyHash = canReuseCachedConfig

165-

? cachedConfig.policyHash

166-

: params.config

141+

const canReuseCachedConfig = Boolean(

142+

params.config && currentPluginMetadataConfigIdentityCache.has(params.config),

143+

);

144+

if (canReuseCachedConfig && params.requireDefaultDiscoveryContext !== true) {

145+

return snapshot;

146+

}

147+

const requestedPolicyHash =

148+

params.config && !canReuseCachedConfig

167149

? resolveInstalledPluginIndexPolicyHash(params.config)

168150

: undefined;

169151

if (requestedPolicyHash && snapshot.policyHash !== requestedPolicyHash) {

170-

const compatiblePolicies = new Set(compatiblePolicyHashes ?? []);

171-

if (!compatiblePolicies.has(requestedPolicyHash)) {

152+

if (!compatiblePolicyHashes?.includes(requestedPolicyHash)) {

172153

return undefined;

173154

}

174155

}

175-

if (canReuseCachedConfig && params.requireDefaultDiscoveryContext !== true) {

176-

return snapshot;

177-

}

178-

if (params.config) {

179-

const requestedConfigFingerprint = canReuseCachedConfig

180-

? cachedConfig.configFingerprint

181-

: resolvePluginMetadataControlPlaneFingerprint(params.config, {

182-

env,

183-

index: snapshot.index,

184-

policyHash: requestedPolicyHash,

185-

workspaceDir: requestedWorkspaceDir,

186-

});

156+

if (params.config && !canReuseCachedConfig) {

157+

const requestedConfigFingerprint = resolvePluginMetadataControlPlaneFingerprint(params.config, {

158+

env,

159+

index: snapshot.index,

160+

policyHash: requestedPolicyHash,

161+

workspaceDir: requestedWorkspaceDir,

162+

});

187163

const fingerprintMatches =

188164

configFingerprint === requestedConfigFingerprint ||

189165

snapshot.configFingerprint === requestedConfigFingerprint ||