原文連接:https://www.zhoubotong.site/post/78.html 開發中對於http請求是經常遇到,一般可能網路延遲或介面返回超時,對於發起客戶端的請求, 除了設置超時時間外,請求重試是很有必要考慮的,我們不用重覆造輪子,可以使用 https://github.com/ra ...
原文連接:https://www.zhoubotong.site/post/78.html
開發中對於http請求是經常遇到,一般可能網路延遲或介面返回超時,對於發起客戶端的請求,
除了設置超時時間外,請求重試是很有必要考慮的,我們不用重覆造輪子,可以使用 https://github.com/rafaeljesus/retry-go 第三方庫,
retry-go的使用非常簡單,如下是一個發起 HTTP Get 請求的重試示例 :
package main
import (
"io/ioutil"
"log"
"net/http"
"time"
"github.com/rafaeljesus/retry-go"
)
var (
attempts = 3 //最大重試次數
sleepTime = time.Second * 2 //重試延遲時間
)
func main() {
_, err := retry.DoHTTP(func() (*http.Response, error) {
return makeRequest()
}, attempts, sleepTime)
if err != nil {
log.Print("retry.DoHTTP Failed")
return
}
log.Print("retry.DoHTTP OK")
}
// 發送http請求
func makeRequest() (*http.Response, error) {
client := http.Client{
Timeout: 2 * time.Second, // 設置請求超時時間
}
req, err := client.Get("https://www.baidu2.com") // 模擬不存在的url請求
if err != nil {
log.Printf(err.Error())
return nil, err
}
body, err := ioutil.ReadAll(req.Body)
if err != nil {
log.Printf(err.Error())
return nil, err
}
log.Printf("響應數據 %v\\n", string(body))
defer req.Body.Close()
res := &http.Response{}
return res, nil
}
運行結果:
我們看到嘗試執行了指定的3次請求次數。