Skip to content

Latest commit

 

History

History
12 lines (7 loc) · 920 Bytes

README.md

File metadata and controls

12 lines (7 loc) · 920 Bytes

go-ratelimiting

codecov Go Reference

Ratelimiting libraries in Go.

These ratelimiters are used in production services for Fossabot, such as Twitch proxies.

There are two kinds of ratelimiters in this library:

  • local: Ratelimiters that are not persistent, and live in-process memory. Useful when you need to throttle a specific function, or some kind of usage within a single container.
  • redis: Ratelimiters that connect to Redis and provide a distributed solution to your ratelimiting problems. Ideal for stateless, distributed applications, such as APIs.