restic/vendor/github.com/cenkalti/backoff
Alexander Neumann b9f0f031b6 Update dependencies
Closes #2129
2019-02-10 13:24:37 +01:00
..
.gitignore Add dependency cenkalti/backoff 2017-10-14 15:56:25 +02:00
.travis.yml Update dependencies 2019-02-10 13:24:37 +01:00
LICENSE Add dependency cenkalti/backoff 2017-10-14 15:56:25 +02:00
README.md Update dependencies 2019-02-10 13:24:37 +01:00
backoff.go Update vendored library github.com/cenkalti/backoff 2018-03-30 11:45:27 +02:00
context.go Update dependencies 2019-02-10 13:24:37 +01:00
exponential.go Update dependencies 2019-02-10 13:24:37 +01:00
retry.go Update dependencies 2019-02-10 13:24:37 +01:00
ticker.go Update dependencies 2019-02-10 13:24:37 +01:00
tries.go Update vendored library github.com/cenkalti/backoff 2018-03-30 11:45:27 +02:00

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.