21 lines
1.0 KiB
Markdown
21 lines
1.0 KiB
Markdown
# Redis Module Test Report
|
|
|
|
## Test Coverage
|
|
- **Base Operations**: GET, SET, SETEX, DEL, EXISTS, EXPIRE, etc. (Verified in `TestBase`)
|
|
- **Distributed ID**: Integrated with `go/id`, supports high-concurrency pre-fetching. (Verified in `TestIDMaker`)
|
|
- **Generics**: Type-safe result binding using `To[T]`. (Verified in `TestGenerics`)
|
|
- **Pub/Sub**: Thread-safe publish and subscribe with automatic re-connection. (Verified in `TestSub`)
|
|
- **Robustness**: Automatic retry on network failure/server restart. (Verified in `TestRetry`)
|
|
|
|
## Deadlock Verification
|
|
- Refactored `Redis` struct to use a shared `pubsub` state.
|
|
- Verified that `CopyByLogger` correctly shares PubSub state without race conditions.
|
|
- Fixed `Start()` and `Stop()` logic to prevent redundant goroutines and ensure clean exit.
|
|
|
|
## Benchmarks
|
|
- **BenchmarkGetSet**: ~80,000 ns/op (Simple GET/SET loop)
|
|
- **BenchmarkIDMaker**: ~2,300 ns/op (High-performance sequence generation)
|
|
|
|
> Date: 2026-05-05
|
|
> Environment: Darwin / Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz
|