OpenID Connect (OIDC) identity and OAuth 2.0 provider with pluggable connectors
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Mark Sagi-Kazar 0f1927a1ba
Vendor dependencies
6 years ago
..
.gitignore Vendor dependencies 6 years ago
.travis.yml Vendor dependencies 6 years ago
LICENSE Vendor dependencies 6 years ago
README.md Vendor dependencies 6 years ago
backoff.go Vendor dependencies 6 years ago
context.go Vendor dependencies 6 years ago
exponential.go Vendor dependencies 6 years ago
retry.go Vendor dependencies 6 years ago
ticker.go Vendor dependencies 6 years ago
tries.go Vendor dependencies 6 years ago

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.