| 17 | } |
| 18 | |
| 19 | type limiter struct { |
| 20 | cmd redis.Cmdable |
| 21 | // 时间窗口间隔 |
| 22 | interval time.Duration |
| 23 | // 阈值 |
| 24 | rate int |
| 25 | } |
| 26 | |
| 27 | func NewRedisSlidingWindowLimiter(cmd redis.Cmdable, interval time.Duration, rate int) Limiter { |
| 28 | return &limiter{ |
nothing calls this directly
no outgoing calls
no test coverage detected