Skip to content

Instantly share code, notes, and snippets.

@wilmoore
Last active June 14, 2024 16:09
Show Gist options
  • Save wilmoore/4290209215201254a8fac94682c2b362 to your computer and use it in GitHub Desktop.
Save wilmoore/4290209215201254a8fac94682c2b362 to your computer and use it in GitHub Desktop.
Software Engineering :: Retry :: Strategy :: Incremental Backoff

Software Engineering :: Retry :: Strategy :: Incremental Backoff

⪼ Made with 💜 by Polyglot.

Incremental Backoff

This strategy increases the delay by an incrementally larger amount each time. It's similar to linear backoff but the increment itself might increase. For example, increase the delay by 2 seconds more than the last increment each time.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment