throttled

Package throttled implements rate limiting access to resources such as HTTP endpoints.

  • 所有者: throttled/throttled
  • 平台:
  • 许可证: BSD 3-Clause "New" or "Revised" License
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

Throttled build status GoDoc

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 get -u github.com/throttled/throttled

Documentation

API documentation is available on godoc.org. The following
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:

store, err := memstore.New(65536)
if err != nil {
	log.Fatal(err)
}

quota := throttled.RateQuota{throttled.PerMin(20), 5}
rateLimiter, err := throttled.NewGCRARateLimiter(store, quota)
if err != nil {
	log.Fatal(err)
}

httpRateLimiter := throttled.HTTPRateLimiter{
	RateLimiter: rateLimiter,
	VaryBy:      &throttled.VaryBy{Path: true},
}

http.ListenAndServe(":8080", httpRateLimiter.RateLimit(myHandler))

See throttled/gcra for a list of other projects related to
rate limiting and GCRA.

Release

  1. 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.
  2. Tag master with a new version prefixed with v. For example, v2.2.0.
  3. git push origin master --tags.
  4. 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.

License

The BSD 3-clause license. Copyright (c) 2014 Martin Angers and contributors.

主要指标

概览
名称与所有者throttled/throttled
主编程语言Go
编程语言Go (语言数: 3)
平台
许可证BSD 3-Clause "New" or "Revised" License
所有者活动
创建于2014-02-19 12:13:32
推送于2025-01-23 17:00:34
最后一次提交2025-01-23 09:00:11
发布数26
最新版本名称v2.13.0 (发布于 )
第一版名称v1.0.0 (发布于 )
用户参与
星数1.5k
关注者数23
派生数97
提交数215
已启用问题?
问题数46
打开的问题数9
拉请求数55
打开的拉请求数0
关闭的拉请求数3
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?