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
pull/8287/head
Igor Kustov 2 months ago committed by GitHub
parent ea89ac864c
commit 992cf82e5c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 9
      src/data/roadmaps/api-design/content/rate-limiting@O7wjldZ3yTA2s_F-UnJw_.md

@ -1,3 +1,10 @@
# Rate Limiting in API Design # 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. 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/)

Loading…
Cancel
Save