You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While making requests with client, it might be essential to throttle the request based on the API Server bandwidth. So adding throttle Per Host.
Also API Server might take more time for request to complete. So timeout is required in this case. Since Retry is already implemented, timeout can be used with Retry
Additional Context (optional)
No response
Code Snippet (optional)
package main
import"github.com/gofiber/fiber/v2"import"log"funcmain() {
app:=fiber.New()
// An example to describe the featurelog.Fatal(app.Listen(":3000"))
}
Feature Description
While making requests with client, it might be essential to throttle the request based on the API Server bandwidth. So adding throttle Per Host.
Also API Server might take more time for request to complete. So timeout is required in this case. Since Retry is already implemented, timeout can be used with Retry
Additional Context (optional)
No response
Code Snippet (optional)
Checklist:
The text was updated successfully, but these errors were encountered: