limiter icon indicating copy to clipboard operation
limiter copied to clipboard

Dead simple rate limit middleware for Go.

Results 17 limiter issues
Sort by recently updated
recently updated
newest added

Bumps [github.com/valyala/fasthttp](https://github.com/valyala/fasthttp) from 1.47.0 to 1.50.0. Release notes Sourced from github.com/valyala/fasthttp's releases. v1.50.0 8cc5539 Fix various request timeout issues (Erik Dubbelboer) 34e7da1 Allow connection close for custom streams (#1603) (Armin...

dependencies

I have multiple resources that are being requested, each with varying capacities. Therefore, I need to implement rate limiting based on the capacity of each individual resource.

Bumps [github.com/redis/go-redis/v9](https://github.com/redis/go-redis) from 9.0.5 to 9.1.0. Release notes Sourced from github.com/redis/go-redis/v9's releases. 9.1.0 What's new? Triggers and Functions support Triggers and Functions allow you to execute server-side functions triggered when...

dependencies

Implement JWT token instead of using IP

Is it possible to have other keys than IP-addresses? I want to make rate limit middle-wares for both IP and other properties. Something like this library has where you provide...

Hi, based on my understanding of the code the WhiteList can be easily added. The prototype of changes is presented in this PR. Of course, this can be further extended...

Hi, this is a very nice of software we'd like to use in our stack but it lacks of SkipList option which is very useful to allow certain clients to...

This is a checklist of refactoring, enhancements and/or features that I would like to take in the next major version of limiter: - **Remove panic in `DefaultErrorHandler`:** people may not...

objective

I'm seeing what seems to be a race condition where the limiter key is still present in the Redis store after the code waits for `Context.Reset` to be reached. This...

bug