c7e47c4d5b
- New pubsub.ts: startSubscribe/stopSubscribe/startMonitor/stopMonitor - IPC: redis:subscribe, redis:unsubscribe, redis:monitor, redis:monitorStop - Streaming messages pushed via webContents.send - Preload: onSubscribeMessage/onMonitorMessage callbacks - CliView: detect SUBSCRIBE/PSUBSCRIBE/MONITOR, switch to streaming mode - Stop button with pulsing indicator (green=subscribe, yellow=monitor) - Real-time message display with timestamps - Auto-cleanup on unmount - i18n keys (zh-CN + en)
14 lines
330 B
TypeScript
14 lines
330 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'
|
|
export * from './pubsub'
|