Popularity
6.7
Stable
Activity
0.0
Stable
479
24
31

Programming language: Go
Tags: Utilities    

httpcontrol alternatives and similar packages

Based on the "Utilities" category.
Alternatively, view httpcontrol alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of httpcontrol or a related project?

Add another 'Utilities' Package

README

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