From 992cf82e5c3cf357ba380456e6168410df7ecbfa Mon Sep 17 00:00:00 2001 From: Igor Kustov Date: Fri, 28 Feb 2025 14:26:31 +0100 Subject: [PATCH] feat: add resources to rate-limiting topic (#8282) * Added few resources to rate-limiting topic * Added 'What is rate limiting? | Rate limiting and bots' article --- .../content/rate-limiting@O7wjldZ3yTA2s_F-UnJw_.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/api-design/content/rate-limiting@O7wjldZ3yTA2s_F-UnJw_.md b/src/data/roadmaps/api-design/content/rate-limiting@O7wjldZ3yTA2s_F-UnJw_.md index 530a97e32..3b2bd348b 100644 --- a/src/data/roadmaps/api-design/content/rate-limiting@O7wjldZ3yTA2s_F-UnJw_.md +++ b/src/data/roadmaps/api-design/content/rate-limiting@O7wjldZ3yTA2s_F-UnJw_.md @@ -1,3 +1,10 @@ # Rate Limiting in API Design -Rate Limiting is a critical aspect of API Design that dictates the number of API calls a client can make within a specified timeframe. This helps in managing resource allocation, preventing abuse of the API, and maintaining the overall health of the API system. Proper rate limiting measures should be in place to ensure the API's stability, thereby delivering a consistent and reliable service to all consumers. It works primarily by setting a limit on the frequency of client requests, thereby preventing individual users from overloading the system. It is crucial to design and implement rate limiting carefully for maintaining API availability and performance. \ No newline at end of file +Rate Limiting is a critical aspect of API Design that dictates the number of API calls a client can make within a specified timeframe. This helps in managing resource allocation, preventing abuse of the API, and maintaining the overall health of the API system. Proper rate limiting measures should be in place to ensure the API's stability, thereby delivering a consistent and reliable service to all consumers. It works primarily by setting a limit on the frequency of client requests, thereby preventing individual users from overloading the system. It is crucial to design and implement rate limiting carefully for maintaining API availability and performance. + +Learn more from the following resources: + +- [@article@Rate limit](https://developer.mozilla.org/en-US/docs/Glossary/Rate_limit) +- [@article@Throttle](https://developer.mozilla.org/en-US/docs/Glossary/Throttle) +- [@article@Debounce](https://developer.mozilla.org/en-US/docs/Glossary/Debounce) +- [@article@What is rate limiting? | Rate limiting and bots](https://www.cloudflare.com/en-gb/learning/bots/what-is-rate-limiting/)