You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Package throttled implements rate limiting using the generic cell rate
algorithm to limit access to resources such as HTTP endpoints.
The 2.0.0 release made some major changes to the throttled API. If
this change broke your code in problematic ways or you wish a feature
of the old API had been retained, please open an issue. We don't
guarantee any particular changes but would like to hear more about
what our users need. Thanks!
Installation
Go Modules are required to use Throttled (check that there's a go.mod in your
package's root). Import Throttled:
import (
"github.com/throttled/throttled/v2"
)
Then any of the standard Go tooling like go build, go test, will find the
package automatically.
You can also pull it into your project using go get:
go get -u github.com/throttled/throttled/v2
Upgrading from the pre-Modules version
The current /v2 of Throttled is perfectly compatible with the pre-Modules
version of Throttled, but when upgrading, you'll have to add /v2 to your
imports. Sorry about the churn, but because Throttled was already on its
semantic version 2 by the time Go Modules came around, its tooling didn't play
nice because it expects the major version in the path to match the major in
its tags.
This example demonstrates the usage of HTTPLimiter for rate-limiting access to
an http.Handler to 20 requests per path per minute with bursts of up to 5
additional requests:
Upgrading to context.Context aware version of throttled
To upgrade to the new context.Context aware version of throttled, update
the package to the latest version and replace the following function with their
context-aware equivalent:
Please note that not all stores make use of the passed context.Context yet.
Related Projects
See throttled/gcra for a list of other projects related to
rate limiting and GCRA.
Release
Update CHANGELOG.md. Please use semantic versioning and the existing
conventions established in the file. Commit the changes with a message like
Bump version to 2.2.0.
Tag master with a new version prefixed with v. For example, v2.2.0.
git push origin master --tags.
Publish a new release on the releases page. Copy the body from the
contents of CHANGELOG.md for the version and follow other conventions from
previous releases.