157af4399f
- 恢复 IPC 类型声明 (src/electron-api.d.ts),修复 31 个 TS2339 错误 - 修复构建断裂:vite.config.ts 改回 electron.vite.config.ts - 修复 2 个 verbatimModuleSyntax type-import 报错 - 修正 .gitignore 构建产物路径 (electron-dist/ -> dist-electron/ + release/) - 清理 55+ 处过时路径注释 - 更新 AGENTS.md 架构文档与 IPC 通道表 - 修正 docs/ROADMAP.md 过时引用
33 lines
1.2 KiB
TypeScript
33 lines
1.2 KiB
TypeScript
// List 操作
|
|
import { getClient } from './connection'
|
|
|
|
export async function listRange(id: string, key: string, start: number, stop: number): Promise<string[]> {
|
|
const client = getClient(id)
|
|
if (!client) throw new Error(`Client ${id} not found`)
|
|
return client.lrange(key, start, stop)
|
|
}
|
|
|
|
export async function listLength(id: string, key: string): Promise<number> {
|
|
const client = getClient(id)
|
|
if (!client) throw new Error(`Client ${id} not found`)
|
|
return client.llen(key)
|
|
}
|
|
|
|
export async function listPush(id: string, key: string, ...values: string[]): Promise<number> {
|
|
const client = getClient(id)
|
|
if (!client) throw new Error(`Client ${id} not found`)
|
|
return client.rpush(key, ...values)
|
|
}
|
|
|
|
export async function listSet(id: string, key: string, index: number, value: string): Promise<void> {
|
|
const client = getClient(id)
|
|
if (!client) throw new Error(`Client ${id} not found`)
|
|
await client.lset(key, index, value)
|
|
}
|
|
|
|
export async function listRemove(id: string, key: string, count: number, value: string): Promise<number> {
|
|
const client = getClient(id)
|
|
if (!client) throw new Error(`Client ${id} not found`)
|
|
return client.lrem(key, count, value)
|
|
}
|