Codebase list golang-github-go-kit-kit / dff50435-7a33-4f0c-bbdc-f455eb10d80a/v0.4.0 circuitbreaker / doc.go
dff50435-7a33-4f0c-bbdc-f455eb10d80a/v0.4.0

Tree @dff50435-7a33-4f0c-bbdc-f455eb10d80a/v0.4.0 (Download .tar.gz)

doc.go @dff50435-7a33-4f0c-bbdc-f455eb10d80a/v0.4.0raw · history · blame

// Package circuitbreaker implements the circuit breaker pattern.
//
// Circuit breakers prevent thundering herds, and improve resiliency against
// intermittent errors. Every client-side endpoint should be wrapped in a
// circuit breaker.
//
// We provide several implementations in this package, but if you're looking
// for guidance, Gobreaker is probably the best place to start.  It has a
// simple and intuitive API, and is well-tested.
package circuitbreaker