update original source link in readme
1 file changed
tree: d98f00bfc360d04ccd4631608c460acb3f340b19
  1. .gitignore
  2. .travis.yml
  3. backoff.go
  4. backoff_test.go
  5. context.go
  6. context_test.go
  7. example_test.go
  8. exponential.go
  9. exponential_test.go
  10. LICENSE
  11. README.md
  12. retry.go
  13. retry_test.go
  14. ticker.go
  15. ticker_test.go
  16. tries.go
  17. tries_test.go
README.md

Exponential Backoff GoDoc Build Status Coverage Status

This is a Go port of the exponential backoff algorithm from Google's HTTP Client Library for Java.

Exponential backoff is an algorithm that uses feedback to multiplicatively decrease the rate of some process, in order to gradually find an acceptable rate. The retries exponentially increase and stop increasing when a certain threshold is met.

Usage

See https://godoc.org/github.com/cenkalti/backoff#pkg-examples

Contributing

  • I would like to keep this library as small as possible.
  • Please don't send a PR without opening an issue and discussing it first.
  • If proposed change is not a common use case, I will probably not accept it.