d131a2732d
- New commandLogger.ts: in-memory log (max 5000 entries) - withLog() wrapper in ipc-handlers.ts for all write commands - CommandLog.vue: table with time/command/duration, write-only filter - IPC: redis:getCommandLog, redis:clearCommandLog - Ctrl+G shortcut from Sidebar - i18n keys (zh-CN + en)
13 lines
305 B
TypeScript
13 lines
305 B
TypeScript
// src/main/redis/index.ts
|
|
// Redis 服务统一导出
|
|
export * from './connection'
|
|
export * from './keys'
|
|
export * from './string'
|
|
export * from './hash'
|
|
export * from './list'
|
|
export * from './set'
|
|
export * from './zset'
|
|
export * from './stream'
|
|
export * from './server'
|
|
export * from './commandLogger'
|