e63940b548
- New format.ts: decodeValue + detectFormat using Node.js zlib - IPC: redis:decodeValue, redis:detectFormat - StringEditor: format selector dropdown with auto-detect - Monaco editor shows decoded value, read-only for compressed formats - Auto-detect: JSON, Gzip (1f 8b), Deflate (78 xx), non-printable → Hex - i18n keys for all formats (zh-CN + en)
15 lines
355 B
TypeScript
15 lines
355 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'
|
|
export * from './format'
|