RequestRateLimiter
KeyResolver
public interface KeyResolver {
/**
* Resolve the key for the rate limiter.
*
* @param exchange the current exchange
* @return the key for the rate limiter
*/
Mono<String> resolve(ServerWebExchange exchange);
}Redis RateLimiter
Last updated