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 as MinThreadCount and twice the value as MaxThreadCount

Disabled

You can disable this feature by calling Disabled() method;

c => c.Disabled()