Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hashicorp/go-cleanhttp
https://github.com/hashicorp/go-cleanhttp
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/hashicorp/go-cleanhttp
- Owner: hashicorp
- License: mpl-2.0
- Created: 2015-10-22T18:07:48.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2024-11-18T19:28:46.000Z (about 2 months ago)
- Last Synced: 2025-01-08T13:07:12.106Z (3 days ago)
- Language: Go
- Homepage: https://godoc.org/github.com/hashicorp/go-cleanhttp
- Size: 20.5 KB
- Stars: 379
- Watchers: 16
- Forks: 35
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
- awesome-go - go-cleanhttp - Get easily stdlib HTTP client, which does not share any state with other clients. (Networking / HTTP Clients)
- zero-alloc-awesome-go - go-cleanhttp - Get easily stdlib HTTP client, which does not share any state with other clients. (Networking / HTTP Clients)
- awesome-go - cleangttp - Functions for accessing "clean" Go http.Client values (Middlewares & framework add-ons)
- awesome-go-extra - go-cleanhttp - 10-22T18:07:48Z|2022-08-19T19:49:08Z| (Networking / HTTP Clients)
README
# cleanhttp
Functions for accessing "clean" Go http.Client values
-------------
The Go standard library contains a default `http.Client` called
`http.DefaultClient`. It is a common idiom in Go code to start with
`http.DefaultClient` and tweak it as necessary, and in fact, this is
encouraged; from the `http` package documentation:> The Client's Transport typically has internal state (cached TCP connections),
so Clients should be reused instead of created as needed. Clients are safe for
concurrent use by multiple goroutines.Unfortunately, this is a shared value, and it is not uncommon for libraries to
assume that they are free to modify it at will. With enough dependencies, it
can be very easy to encounter strange problems and race conditions due to
manipulation of this shared value across libraries and goroutines (clients are
safe for concurrent use, but writing values to the client struct itself is not
protected).Making things worse is the fact that a bare `http.Client` will use a default
`http.Transport` called `http.DefaultTransport`, which is another global value
that behaves the same way. So it is not simply enough to replace
`http.DefaultClient` with `&http.Client{}`.This repository provides some simple functions to get a "clean" `http.Client`
-- one that uses the same default values as the Go standard library, but
returns a client that does not share any state with other clients.