facebookarchive / httpcontrol

Package httpcontrol allows for HTTP transport level control around timeouts and retries.

Home Page:https://godoc.org/github.com/facebookgo/httpcontrol

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

httpcontrol Build Status

import "github.com/facebookgo/httpcontrol"

Package httpcontrol allows a HTTP transport supporting connection pooling, timeouts & retries.

This Transport is built on top of the standard library transport and augments it with additional features. Using it can be as simple as:

client := &http.Client{
    Transport: &httpcontrol.Transport{
        RequestTimeout: time.Minute,
        MaxTries: 3,
    },
}
res, err := client.Get("http://example.com/")

Documentation: http://godoc.org/github.com/facebookgo/httpcontrol

About

Package httpcontrol allows for HTTP transport level control around timeouts and retries.

https://godoc.org/github.com/facebookgo/httpcontrol

License:Other


Languages

Language:Go 100.0%