From 8a28313b14739722e9712966e6ba0230e90178e1 Mon Sep 17 00:00:00 2001 From: Berkan Sasmaz Date: Tue, 29 Nov 2022 11:21:42 +0300 Subject: [PATCH] Update Post.md --- docs/en/Community-Articles/2022-11-29-Rate-Limiting/Post.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/en/Community-Articles/2022-11-29-Rate-Limiting/Post.md b/docs/en/Community-Articles/2022-11-29-Rate-Limiting/Post.md index 52fc9be63d..3729cfc8d1 100644 --- a/docs/en/Community-Articles/2022-11-29-Rate-Limiting/Post.md +++ b/docs/en/Community-Articles/2022-11-29-Rate-Limiting/Post.md @@ -1,6 +1,8 @@ # Rate Limiting with ASP.NET Core 7.0 -Rate limiting is a way of controlling traffic so that a web application or API receives. In other words, rate limiting helps you control the amount of traffic each user has access to at any given time. This is extremely useful when you want to manage the load on your server or services, avoid going over your monthly data transfer limit and allow the system to continue to function and meet service level agreements, even when an increase in demand places an extreme load on resources. In this article, we will look at why you need to use rate limiting, how the different rate limiting algorithms provided with .NET 7.0 work, and best practices for using rate limiting in your application. +Rate limiting is a way of controlling traffic so that a web application or API receives. In other words, rate limiting helps you control the amount of traffic each user has access to at any given time. This is extremely useful when you want to manage the load on your server or services, avoid going over your monthly data transfer limit and allow the system to continue to function and meet service level agreements, even when an increase in demand places an extreme load on resources. + +In this article, we will look at what is rate limiting, why we need to use it, how the different rate limiting algorithms provided with .NET 7.0 work, and best practices for using rate limiting in your application. ## What is rate limiting?