Rate Limiter
Implementations of this feature provides predefined rate limiter behaviour.
Add this feature using AddRateLimiter()
extension;
app.Features.AddRateLimiter(...);
Concurrency Limiter
This feature registers .NET concurrency limiter services and middleware with
permitLimit
and queueLimit
options
c => c.ConcurrencyLimiter()
This feature will set
permitLimit
count asMinThreadCount
and twice the value asMaxThreadCount
Disabled
You can disable this feature by calling Disabled()
method;
c => c.Disabled()