ratelimitj icon indicating copy to clipboard operation
ratelimitj copied to clipboard

A Java library for Rate-Limiting, providing extensible storage and application framework adaptors.

Results 21 ratelimitj issues
Sort by recently updated
recently updated
newest added

when does the stable version of Rate limiting toggles (dark launch) be release ?

## Context Often many APIs that use rate limiting return the number of remaining calls using [headers](https://tools.ietf.org/id/draft-polli-ratelimit-headers-00.html) like `X-RateLimit-Remaining`. It would be ideal for the interfaces to return an object...

I have following bundle setup for my application, it seems that if we have other bundle added into the `BootStrap`, the rate limit is not working and would throw `NullPointerException`...

We love your published library and very likely to use it. One idea to improve is to return not just a simple `boolean` but a rich object of type `{isOverLimit:boolean,...

In Dropwizard: Is there any way that I can return a JSON 429 response instead of the default HTML/text response? I looked at https://nickb.dev/blog/writing-a-dropwizard-json-app, but couldn't wrap my head around...

I have the use case need to increment my counter, even if I'm over limit. I added another parameter to 'increment anyway', and also added convenience methods. Tests written and...

I’ve a use case where the provider wants us to throttle the calls not by some fixed rate/second, but by individual user ids. In other words, a user must wait...

There are scenarios where the client is interested in knowing the remaining limit. This information is usually passed back to client as part of response headers. Can we add a...

Hi I am using RateLimitJ - Dropwizard lib to maintain the distributed rate limit in one of my projects but I observe nothing is logged on limit details. Am I...

I have very simple example of in memory sliding window. Limit is one call for a give key and duration is 10 seconds. It starts of with limiting one request...