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

推荐订阅源

云风的 BLOG
云风的 BLOG
The GitHub Blog
The GitHub Blog
Y
Y Combinator Blog
博客园 - 三生石上(FineUI控件)
T
The Blog of Author Tim Ferriss
宝玉的分享
宝玉的分享
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
V
Visual Studio Blog
小众软件
小众软件
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MongoDB | Blog
MongoDB | Blog
V
V2EX
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 【当耐特】
Microsoft Azure Blog
Microsoft Azure Blog
The Cloudflare Blog
H
Hackread – Cybersecurity News, Data Breaches, AI and More
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Engineering at Meta
Engineering at Meta
L
LangChain Blog
Martin Fowler
Martin Fowler
GbyAI
GbyAI
博客园 - 司徒正美

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(agents): bound sqlite cache expiry · openclaw/opencla...
steipete · 2026-05-31 · via Recent Commits to openclaw:main

@@ -5,6 +5,13 @@ import {

55

getNodeSqliteKysely,

66

} from "../../infra/kysely-sync.js";

77

import { normalizeAgentId } from "../../routing/session-key.js";

8+

import {

9+

MAX_DATE_TIMESTAMP_MS,

10+

asDateTimestampMs,

11+

isFutureDateTimestampMs,

12+

resolveDateTimestampMs,

13+

resolveExpiresAtMsFromDurationMs,

14+

} from "../../shared/number-coercion.js";

815

import type { DB as OpenClawAgentKyselyDatabase } from "../../state/openclaw-agent-db.generated.js";

916

import {

1017

openOpenClawAgentDatabase,

@@ -89,7 +96,7 @@ function parseValue(raw: string | null): unknown {

89969097

function isExpired(row: AgentCacheRow, now: number): boolean {

9198

const expiresAt = asNumber(row.expires_at);

92-

return expiresAt !== null && expiresAt <= now;

99+

return expiresAt !== null && !isFutureDateTimestampMs(expiresAt, { nowMs: now });

93100

}

9410195102

function rowToCacheValue(

@@ -112,17 +119,31 @@ function resolveExpiresAt(options: AgentRuntimeCacheWriteOptions, now: number):

112119

if (!Number.isFinite(options.ttlMs) || options.ttlMs <= 0) {

113120

throw new Error("SQLite agent cache ttlMs must be a positive finite number.");

114121

}

115-

return now + options.ttlMs;

122+

const expiresAt = resolveExpiresAtMsFromDurationMs(options.ttlMs, { nowMs: now });

123+

if (expiresAt === undefined) {

124+

throw new Error("SQLite agent cache ttlMs must resolve to a valid Date timestamp.");

125+

}

126+

return expiresAt;

116127

}

117-

return options.expiresAt ?? null;

128+

if (options.expiresAt !== undefined) {

129+

if (options.expiresAt === null) {

130+

return null;

131+

}

132+

const expiresAt = asDateTimestampMs(options.expiresAt);

133+

if (expiresAt === undefined) {

134+

throw new Error("SQLite agent cache expiresAt must be a valid Date timestamp.");

135+

}

136+

return expiresAt;

137+

}

138+

return null;

118139

}

119140120141

export function writeSqliteAgentCacheEntry(

121142

options: WriteSqliteAgentCacheEntryOptions,

122143

): AgentRuntimeCacheValue {

123144

const scope = normalizeScope(options);

124145

const key = normalizeKey(options.key);

125-

const updatedAt = options.now?.() ?? Date.now();

146+

const updatedAt = resolveDateTimestampMs(options.now?.());

126147

const expiresAt = resolveExpiresAt(options, updatedAt);

127148

const valueJson = options.value === undefined ? null : JSON.stringify(options.value);

128149

const blob =

@@ -182,7 +203,7 @@ export function readSqliteAgentCacheEntry(

182203

.where("scope", "=", scope.scope)

183204

.where("key", "=", key),

184205

) ?? null;

185-

if (!row || isExpired(row, options.now?.() ?? Date.now())) {

206+

if (!row || isExpired(row, resolveDateTimestampMs(options.now?.()))) {

186207

return null;

187208

}

188209

return rowToCacheValue(row, scope);

@@ -192,7 +213,7 @@ export function listSqliteAgentCacheEntries(

192213

options: SqliteAgentCacheStoreOptions,

193214

): AgentRuntimeCacheValue[] {

194215

const scope = normalizeScope(options);

195-

const now = options.now?.() ?? Date.now();

216+

const now = resolveDateTimestampMs(options.now?.());

196217

const database = openOpenClawAgentDatabase(toDatabaseOptions(options));

197218

const db = getNodeSqliteKysely<AgentCacheDatabase>(database.db);

198219

return executeSqliteQuerySync(

@@ -238,7 +259,10 @@ export function clearExpiredSqliteAgentCacheEntries(

238259

options: SqliteAgentCacheStoreOptions & { currentTime?: number },

239260

): number {

240261

const scope = normalizeScope(options);

241-

const currentTime = options.currentTime ?? options.now?.() ?? Date.now();

262+

const currentTime = asDateTimestampMs(options.currentTime ?? options.now?.() ?? Date.now());

263+

if (currentTime === undefined) {

264+

return 0;

265+

}

242266

return runOpenClawAgentWriteTransaction((database) => {

243267

const db = getNodeSqliteKysely<AgentCacheDatabase>(database.db);

244268

const result = executeSqliteQuerySync(

@@ -247,7 +271,13 @@ export function clearExpiredSqliteAgentCacheEntries(

247271

.deleteFrom("cache_entries")

248272

.where("scope", "=", scope.scope)

249273

.where("expires_at", "is not", null)

250-

.where("expires_at", "<=", currentTime),

274+

.where((eb) =>

275+

eb.or([

276+

eb("expires_at", "<=", currentTime),

277+

eb("expires_at", ">", MAX_DATE_TIMESTAMP_MS),

278+

eb("expires_at", "<", -MAX_DATE_TIMESTAMP_MS),

279+

]),

280+

),

251281

);

252282

return Number(result.numAffectedRows ?? 0);

253283

}, toDatabaseOptions(options));