Uncategorized
367 words
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub. Quick StartCreate a new post1$ hexo new "My New Post" More info: Writing Run server1$ hexo server More info: Server Generate static files1$ hexo generate More info: Generating Deploy to remote sites1$ hexo deploy More info: Deployment
2.6k words
速率限制库 (Rate Limiter)简介go-toolkit 项目中的 ratelimit 包提供了一个高性能、可靠的基于 Redis 的速率限制实现,使用滑动窗口算法确保平滑且精确的请求限流。该库专为高并发环境设计,支持分布式部署,并提供完整的监控集成。本文展示了在10,000 QPS限流设置下的性能表现。 安装方式1go get github.com/go-toolkit/pkg/ratelimit 项目地址https://github.com/JarrettGuo/go-toolkit 主要特点 高性能:在标准配置下可处理 20,000+ 请求/秒 可靠性:使用 Redis 确保分布式环境下的数据一致性 滑动窗口算法:相比固定窗口更平滑,避免边界突发问题 易于集成:与 Gin 框架无缝集成的中间件 可观测性:内置 Prometheus 指标,配套 Grafana 仪表板 完整测试:全面的单元测试和集成测试覆盖 核心实现该限流器基于Redis的有序集合(ZSET)实现滑动窗口算法,使用Lua脚本确保原子性操作: 1234567891011// 创建 Redi...