Category "rate-limiting"

Is rate limiting between different API endpoints of the same service synchronized or separate?

I want to learn the best behavior for implementing a rate limiter. Say I have serviceA and serviceB where serviceA calls API_1 and API_2 in serviceB. Say that s

Nginx: In which order rate limiting and caching are executed?

I want to use nginx for rate limiting and caching. In which order nginx applies them? In other words, is it limiting only request to the upstream server or al

using slowapi with a datamodel instead of request as parameter

I want to use slowapi on a fastapi python app, for implementing RateLimiter. However, The definitions of the endpoints use a data model for parameters (inheriti