Do you want to control the amount of traffic your API or Web Application receives?

.NET Tip💡

.NET 7 introduces the Rate Liming Middleware, which can be used to rate limit web applications and APIs 🔥
 
⏩ We can limit the number of requests that can be made in a given period of time to our API/Web App
 
⏩ This can help to improve the performance of the application and to prevent it from becoming unresponsive

There are 4 types of limiters:

✅ Fixed window
✅ Sliding window
✅ Token bucket
✅ Concurrency

Add comment