Categorygithub.com/aidenwallis/go-ratelimiting
repository
0.0.5
Repository: https://github.com/aidenwallis/go-ratelimiting.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

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.