開発者は、アプリケーションのパフォーマンスと信頼性をテストする必要があります。機能テストと負荷テストを実行した後、ユーザーからのトラフィックの急増によりアプリケーションがクラッシュします。信頼性を維持するために実装する必要がある API 制約のタイプはどれですか?
正解:A
Rate limiting, as explained previously, is essential to ensure that an application can handle traffic spikes without crashing. By limiting the rate at which requests are processed, the application can maintain stability and reliability under varying load conditions. * Traffic Spike Management: Rate limiting helps manage unexpected surges in traffic by capping the number of allowable requests within a specified period. * Reliability Maintenance: By preventing overloading, rate limiting ensures that the application remains operational and responsive, maintaining its reliability. References: * Managing Traffic Spikes with Rate Limiting: Rate Limiting Strategies