Real rate limit reactivity
is anyone using a rate limit response processor with backoffs? so far I've been using naive rate limiters, that just limits calling within some timespan, however this assumes one client, and does not react to server error responses that contain rate limiting hints via headers.
basically it'd be a rate limit, plus retry, with backoff, that understands the response headers and collect outgoing requests until the rate limit timeout has passed again etc
headers
429 status response
body
I think it's cloudflare default rate limiting.
The idea is to be able to process as many requests as possible while maximising the ratelimit at the 3rd party api.
basically it'd be a rate limit, plus retry, with backoff, that understands the response headers and collect outgoing requests until the rate limit timeout has passed again etc
headers
429 status response
body
I think it's cloudflare default rate limiting.
The idea is to be able to process as many requests as possible while maximising the ratelimit at the 3rd party api.
