From 12fe64d146056c8d7e2dd0853cfdc5344945f146 Mon Sep 17 00:00:00 2001 From: abo Date: Thu, 26 May 2016 10:27:41 +0800 Subject: [PATCH 1/2] Add ratelimiter to utilities --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e3c9756b..17714b9d 100644 --- a/README.md +++ b/README.md @@ -983,6 +983,7 @@ See [go-hardware](https://github.com/rakyll/go-hardware) for a comprehensive lis * [pester](https://github.com/sethgrid/pester) - Go HTTP client calls with retries, backoff, and concurrency. * [pm](https://github.com/VividCortex/pm) - Process (i.e. goroutine) manager with an HTTP API. * [profile](https://github.com/davecheney/profile) - Simple profiling support package for Go. +* [ratelimiter](https://github.com/abo/ratelimiter) - Redis-based rate counter and rate limiter for Go. * [request](https://github.com/mozillazg/request) - Go HTTP Requests for Humans™. * [rerun](https://github.com/ivpusic/rerun) - Recompiling and rerunning go apps when source changes. * [resty](https://github.com/go-resty/resty) - Simple HTTP and REST client for Go inspired by Ruby rest-client. From 63648112ed0c2b2d7f076c4576ef6faa4a8a9842 Mon Sep 17 00:00:00 2001 From: abo Date: Fri, 27 May 2016 10:42:22 +0800 Subject: [PATCH 2/2] ratelimiter rename to rerate --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 17714b9d..afc9d26e 100644 --- a/README.md +++ b/README.md @@ -983,8 +983,8 @@ See [go-hardware](https://github.com/rakyll/go-hardware) for a comprehensive lis * [pester](https://github.com/sethgrid/pester) - Go HTTP client calls with retries, backoff, and concurrency. * [pm](https://github.com/VividCortex/pm) - Process (i.e. goroutine) manager with an HTTP API. * [profile](https://github.com/davecheney/profile) - Simple profiling support package for Go. -* [ratelimiter](https://github.com/abo/ratelimiter) - Redis-based rate counter and rate limiter for Go. * [request](https://github.com/mozillazg/request) - Go HTTP Requests for Humans™. +* [rerate](https://github.com/abo/rerate) - Redis-based rate counter and rate limiter for Go. * [rerun](https://github.com/ivpusic/rerun) - Recompiling and rerunning go apps when source changes. * [resty](https://github.com/go-resty/resty) - Simple HTTP and REST client for Go inspired by Ruby rest-client. * [robustly](https://github.com/VividCortex/robustly) - Runs functions resiliently, catching and restarting panics.