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

推荐订阅源

V
Visual Studio Blog
量子位
大猫的无限游戏
大猫的无限游戏
Hugging Face - Blog
Hugging Face - Blog
S
SegmentFault 最新的问题
Blog — PlanetScale
Blog — PlanetScale
月光博客
月光博客
Google DeepMind News
Google DeepMind News
小众软件
小众软件
WordPress大学
WordPress大学
宝玉的分享
宝玉的分享
MongoDB | Blog
MongoDB | Blog
B
Blog RSS Feed
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog
博客园 - 聂微东
The GitHub Blog
The GitHub Blog
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
雷峰网
雷峰网
Jina AI
Jina AI
酷 壳 – CoolShell
酷 壳 – CoolShell

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(sessions): add precomputed patch writer · openclaw/o...
steipete · 2026-05-28 · via Recent Commits to openclaw:main
Original file line numberDiff line numberDiff line change

@@ -4,9 +4,7 @@ import type { OpenClawConfig } from "../config/types.openclaw.js";

44

import { CommandLane } from "../process/lanes.js";

55
66

const sessionStoreMocks = vi.hoisted(() => ({

7-

updateSessionStoreEntry: vi.fn(async (params: { update: (entry: unknown) => unknown }) => {

8-

await params.update({ sessionId: "session-1" });

9-

}),

7+

applySessionStoreEntryPatch: vi.fn(),

108

}));

119
1210

const commandQueueMocks = vi.hoisted(() => ({

@@ -44,7 +42,7 @@ describe("session suspension", () => {

4442

cancelLaneAutoResume(CommandLane.Cron);

4543

cancelLaneAutoResume(CommandLane.CronNested);

4644

vi.useRealTimers();

47-

sessionStoreMocks.updateSessionStoreEntry.mockClear();

45+

sessionStoreMocks.applySessionStoreEntryPatch.mockClear();

4846

commandQueueMocks.setCommandLaneConcurrency.mockClear();

4947

});

5048
Original file line numberDiff line numberDiff line change

@@ -1,7 +1,7 @@

11

import path from "node:path";

22

import { resolveAgentMaxConcurrent, resolveSubagentMaxConcurrent } from "../config/agent-limits.js";

33

import { resolveCronMaxConcurrentRuns } from "../config/cron-limits.js";

4-

import { updateSessionStoreEntry } from "../config/sessions.js";

4+

import { applySessionStoreEntryPatch } from "../config/sessions.js";

55

import type { OpenClawConfig } from "../config/types.openclaw.js";

66

import { createSubsystemLogger } from "../logging/subsystem.js";

77

import { setCommandLaneConcurrency } from "../process/command-queue.js";

@@ -98,10 +98,10 @@ export async function suspendSession(params: {

9898

const now = Date.now();

9999
100100

try {

101-

await updateSessionStoreEntry({

101+

await applySessionStoreEntryPatch({

102102

storePath,

103103

sessionKey,

104-

update: async () => ({

104+

patch: {

105105

quotaSuspension: {

106106

schemaVersion: 1,

107107

suspendedAt: now,

@@ -113,7 +113,7 @@ export async function suspendSession(params: {

113113

expectedResumeBy: now + ttlMs,

114114

state: "suspended",

115115

},

116-

}),

116+

},

117117

});

118118

} catch (err) {

119119

log.warn("failed to persist quota suspension; not throttling lane", {

Original file line numberDiff line numberDiff line change

@@ -26,6 +26,7 @@ import {

2626

resolveSessionFilePath,

2727

resolveSessionFilePathOptions,

2828

type SessionEntry,

29+

applySessionStoreEntryPatch,

2930

updateSessionStoreEntry,

3031

} from "../../config/sessions.js";

3132

import type { OpenClawConfig } from "../../config/types.openclaw.js";

@@ -1038,10 +1039,10 @@ export async function runMemoryFlushIfNeeded(params: {

10381039

}

10391040

if (params.storePath && params.sessionKey) {

10401041

try {

1041-

const updatedEntry = await updateSessionStoreEntry({

1042+

const updatedEntry = await applySessionStoreEntryPatch({

10421043

storePath: params.storePath,

10431044

sessionKey: params.sessionKey,

1044-

update: async () => ({ totalTokens: transcriptPromptTokens, totalTokensFresh: true }),

1045+

patch: { totalTokens: transcriptPromptTokens, totalTokensFresh: true },

10451046

});

10461047

if (updatedEntry) {

10471048

entry = updatedEntry;

Original file line numberDiff line numberDiff line change

@@ -17,11 +17,11 @@ import { deriveContextPromptTokens, hasNonzeroUsage, normalizeUsage } from "../.

1717

import { enqueueCommitmentExtraction } from "../../commitments/runtime.js";

1818

import type { OpenClawConfig } from "../../config/config.js";

1919

import {

20+

applySessionStoreEntryPatch,

2021

loadSessionStore,

2122

resolveSessionPluginStatusLines,

2223

resolveSessionPluginTraceLines,

2324

type SessionEntry,

24-

updateSessionStoreEntry,

2525

} from "../../config/sessions.js";

2626

import type { TypingMode } from "../../config/types.js";

2727

import { resolveSessionTranscriptCandidates } from "../../gateway/session-utils.fs.js";

@@ -1140,10 +1140,10 @@ export async function runReplyAgent(params: {

11401140

activeSessionEntry.updatedAt = updatedAt;

11411141

activeSessionStore[sessionKey] = activeSessionEntry;

11421142

if (storePath) {

1143-

await updateSessionStoreEntry({

1143+

await applySessionStoreEntryPatch({

11441144

storePath,

11451145

sessionKey,

1146-

update: async () => ({ updatedAt }),

1146+

patch: { updatedAt },

11471147

});

11481148

}

11491149

};

@@ -1523,13 +1523,13 @@ export async function runReplyAgent(params: {

15231523

activeSessionEntry.updatedAt = updatedAt;

15241524

activeSessionStore[sessionKey] = activeSessionEntry;

15251525

if (storePath) {

1526-

await updateSessionStoreEntry({

1526+

await applySessionStoreEntryPatch({

15271527

storePath,

15281528

sessionKey,

1529-

update: async () => ({

1529+

patch: {

15301530

groupActivationNeedsSystemIntro: false,

15311531

updatedAt,

1532-

}),

1532+

},

15331533

});

15341534

}

15351535

}

@@ -1585,14 +1585,14 @@ export async function runReplyAgent(params: {

15851585

activeSessionStore[sessionKey] = fallbackStateEntry;

15861586

}

15871587

if (sessionKey && storePath) {

1588-

await updateSessionStoreEntry({

1588+

await applySessionStoreEntryPatch({

15891589

storePath,

15901590

sessionKey,

1591-

update: async () => ({

1591+

patch: {

15921592

fallbackNoticeSelectedModel: fallbackTransition.nextState.selectedModel,

15931593

fallbackNoticeActiveModel: fallbackTransition.nextState.activeModel,

15941594

fallbackNoticeReason: fallbackTransition.nextState.reason,

1595-

}),

1595+

},

15961596

});

15971597

}

15981598

}

@@ -2160,17 +2160,17 @@ export async function runReplyAgent(params: {

21602160

})()

21612161

: pendingText;

21622162

if (resolvedPendingText) {

2163-

await updateSessionStoreEntry({

2163+

await applySessionStoreEntryPatch({

21642164

storePath,

21652165

sessionKey,

21662166

skipMaintenance: true,

21672167

takeCacheOwnership: true,

2168-

update: async () => ({

2168+

patch: {

21692169

pendingFinalDelivery: true,

21702170

pendingFinalDeliveryText: resolvedPendingText,

21712171

pendingFinalDeliveryCreatedAt: Date.now(),

21722172

updatedAt: Date.now(),

2173-

}),

2173+

},

21742174

});

21752175

}

21762176

}

Original file line numberDiff line numberDiff line change

@@ -516,21 +516,21 @@ export async function getReplyFromConfig(

516516

sessionStore[sessionKey] = sessionEntry;

517517

}

518518

if (sessionKey && storePath) {

519-

const { updateSessionStoreEntry } = await import("../../config/sessions.js");

520-

await updateSessionStoreEntry({

519+

const { applySessionStoreEntryPatch } = await import("../../config/sessions.js");

520+

await applySessionStoreEntryPatch({

521521

storePath,

522522

sessionKey,

523523

skipMaintenance: true,

524524

takeCacheOwnership: true,

525-

update: async () => ({

525+

patch: {

526526

pendingFinalDelivery: undefined,

527527

pendingFinalDeliveryText: undefined,

528528

pendingFinalDeliveryCreatedAt: undefined,

529529

pendingFinalDeliveryLastAttemptAt: undefined,

530530

pendingFinalDeliveryAttemptCount: undefined,

531531

pendingFinalDeliveryLastError: undefined,

532532

pendingFinalDeliveryContext: undefined,

533-

}),

533+

},

534534

});

535535

}

536536

} else {

@@ -546,19 +546,19 @@ export async function getReplyFromConfig(

546546

sessionStore[sessionKey] = sessionEntry;

547547

}

548548

if (sessionKey && storePath) {

549-

const { updateSessionStoreEntry } = await import("../../config/sessions.js");

550-

await updateSessionStoreEntry({

549+

const { applySessionStoreEntryPatch } = await import("../../config/sessions.js");

550+

await applySessionStoreEntryPatch({

551551

storePath,

552552

sessionKey,

553553

skipMaintenance: true,

554554

takeCacheOwnership: true,

555-

update: async () => ({

555+

patch: {

556556

pendingFinalDeliveryText: replayText,

557557

pendingFinalDeliveryLastAttemptAt: updatedAt,

558558

pendingFinalDeliveryAttemptCount: attemptCount,

559559

pendingFinalDeliveryLastError: null,

560560

updatedAt,

561-

}),

561+

},

562562

});

563563

}

564564

logResolverTiming("completed", "pending_final_delivery_replay");

Original file line numberDiff line numberDiff line change

@@ -5,6 +5,7 @@ import path from "node:path";

55

import { afterAll, beforeAll, describe, expect, it, vi } from "vitest";

66

import { withEnv } from "../test-utils/env.js";

77

import {

8+

applySessionStoreEntryPatch,

89

buildGroupDisplayName,

910

deriveSessionKey,

1011

loadSessionStore,

@@ -534,6 +535,34 @@ describe("sessions", () => {

534535

expect(store[sessionKey]?.reasoningLevel).toBe("on");

535536

});

536537
538+

it("applySessionStoreEntryPatch applies a precomputed patch without a callback", async () => {

539+

const sessionKey = "agent:main:main";

540+

const { storePath } = await createSessionStoreFixture({

541+

prefix: "applySessionStoreEntryPatch",

542+

entries: {

543+

[sessionKey]: {

544+

sessionId: "sess-1",

545+

updatedAt: 100,

546+

reasoningLevel: "on",

547+

},

548+

},

549+

});

550+
551+

const result = await applySessionStoreEntryPatch({

552+

storePath,

553+

sessionKey,

554+

patch: {

555+

updatedAt: 200,

556+

thinkingLevel: "high",

557+

},

558+

});

559+
560+

expect(result?.thinkingLevel).toBe("high");

561+

const store = loadSessionStore(storePath);

562+

expect(store[sessionKey]?.updatedAt).toBeGreaterThanOrEqual(200);

563+

expect(store[sessionKey]?.reasoningLevel).toBe("on");

564+

});

565+
537566

it("updateSessionStoreEntry returns null when session key does not exist", async () => {

538567

const { storePath } = await createSessionStoreFixture({

539568

prefix: "updateSessionStoreEntry-missing",

Original file line numberDiff line numberDiff line change

@@ -1 +1,5 @@

1-

export { updateSessionStore, updateSessionStoreEntry } from "./store.js";

1+

export {

2+

applySessionStoreEntryPatch,

3+

updateSessionStore,

4+

updateSessionStoreEntry,

5+

} from "./store.js";

Original file line numberDiff line numberDiff line change

@@ -744,6 +744,33 @@ export async function updateSessionStoreEntry(params: {

744744

});

745745

}

746746
747+

export async function applySessionStoreEntryPatch(params: {

748+

storePath: string;

749+

sessionKey: string;

750+

patch: Partial<SessionEntry>;

751+

skipMaintenance?: boolean;

752+

takeCacheOwnership?: boolean;

753+

}): Promise<SessionEntry | null> {

754+

const { storePath, sessionKey, patch } = params;

755+

return await runExclusiveSessionStoreWrite(storePath, async () => {

756+

const store = loadMutableSessionStoreForWriter(storePath);

757+

const resolved = resolveSessionStoreEntry({ store, sessionKey });

758+

const existing = resolved.existing;

759+

if (!existing) {

760+

return null;

761+

}

762+

const next = mergeSessionEntry(existing, patch);

763+

return await persistResolvedSessionEntry({

764+

storePath,

765+

store,

766+

resolved,

767+

next,

768+

skipMaintenance: params.skipMaintenance,

769+

takeCacheOwnership: params.takeCacheOwnership,

770+

});

771+

});

772+

}

773+
747774

export async function patchSessionEntry(

748775

params: SessionEntryWorkflowOptions & {

749776

sessionKey: string;