クラウド開発者は、欠陥を解決するには REST API エンドポイントを更新する必要があります。同時に API を呼び出そうとするユーザーが多すぎると、次のメッセージが表示されます。 エラー: リクエストのタイムアウト - 後でもう一度お試しください このエラーを解決するには、開発者が考慮すべき概念は次のうちどれですか?
正解:C
To resolve the issue of a REST API endpoint timing out when too many users attempt to call the API simultaneously, the developer should consider implementing rate limiting. Rate limiting controls the number of requests a user can submit in a given amount of time, preventing overuse of the API resources and ensuring availability for all users.