https://github.com/cenkalti/backoff
golang
Score: 36.1432373992847
Last synced: about 1 hour ago
JSON representation
Repository metadata:
⏱ The exponential backoff algorithm in Go
- Host: GitHub
- URL: https://github.com/cenkalti/backoff
- Owner: cenkalti
- License: mit
- Created: 2014-02-26T00:00:16.000Z (over 11 years ago)
- Default Branch: v5
- Last Pushed: 2025-08-18T18:19:00.000Z (19 days ago)
- Last Synced: 2025-08-30T03:38:37.918Z (7 days ago)
- Topics: golang
- Language: Go
- Homepage:
- Size: 133 KB
- Stars: 3,819
- Watchers: 29
- Forks: 204
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Owner metadata:
- Name: Cenk Altı
- Login: cenkalti
- Email:
- Kind: user
- Description:
- Website: https://cenkalti.com
- Location: Toronto
- Twitter:
- Company:
- Icon url: https://avatars.githubusercontent.com/u/661618?u=55810a5a4c53c22c6e1ac2dd8327f5a5e421b0bc&v=4
- Repositories: 157
- Last Synced at: 2025-08-31T20:48:49.073Z
- Profile URL: https://github.com/cenkalti
GitHub Events
Total
- Commit comment event: 1
- Create event: 7
- Delete event: 1
- Fork event: 20
- Issue comment event: 84
- Issues event: 60
- Pull request event: 11
- Pull request review comment event: 3
- Pull request review event: 4
- Push event: 22
- Watch event: 319
- Total: 532
Last Year
- Commit comment event: 1
- Create event: 7
- Delete event: 1
- Fork event: 20
- Issue comment event: 84
- Issues event: 60
- Pull request event: 11
- Pull request review comment event: 3
- Pull request review event: 4
- Push event: 22
- Watch event: 319
- Total: 532
Committers metadata
Last synced: 30 days ago
Total Commits: 151
Total Committers: 34
Avg Commits per committer: 4.441
Development Distribution Score (DDS): 0.298
Commits in past year: 26
Committers in past year: 4
Avg Commits per committer in past year: 6.5
Development Distribution Score (DDS) in past year: 0.154
Name | Commits | |
---|---|---|
Cenk Alti | c****i@g****m | 106 |
Arnaud Le Blanc | a****b@g****m | 3 |
ptrus | p****r@g****m | 3 |
ItalyPaleAle | 4****e | 3 |
Vincent Bernat | v****t@b****m | 2 |
Samani G. Gikandi | s****i@g****m | 2 |
Ory Band | o****d@g****m | 2 |
Josh Soref | 2****f | 2 |
Fatih Arslan | f****n@g****m | 2 |
Nelz | n****z@o****o | 2 |
Oppodelldog | o****g@n****e | 1 |
Nicolae Vartolomei | n****v@k****m | 1 |
Bob Glickstein | b****g@e****m | 1 |
Davor Kapsa | d****s | 1 |
Dom Parfitt | d****t@c****m | 1 |
Gabriela Gutierrez | g****z@g****m | 1 |
Gareth Watts | g****h@o****t | 1 |
swithek | s****s@p****m | 1 |
markchadwick | m****k@g****m | 1 |
justin-mp | j****p@j****m | 1 |
Yash Bhutwala | y****2@b****u | 1 |
Venkat | v****u@s****m | 1 |
Tobias Kaupat | t****l@n****e | 1 |
Sufiyan Mirza | s****m@w****m | 1 |
Steven Littiebrant | i****x@g****m | 1 |
Steven Erenst | s****t@g****m | 1 |
Steven Allen | s****n@s****m | 1 |
Robbie Vanbrabant | r****t@g****m | 1 |
Phil Sorber | s****r@a****g | 1 |
Paul Ingles | p****l@o****k | 1 |
and 4 more... |
Issue and Pull Request metadata
Last synced: 6 days ago
Total issues: 97
Total pull requests: 48
Average time to close issues: 5 months
Average time to close pull requests: 8 days
Total issue authors: 85
Total pull request authors: 41
Average comments per issue: 2.3
Average comments per pull request: 1.67
Merged pull request: 32
Bot issues: 0
Bot pull requests: 0
Past year issues: 24
Past year pull requests: 11
Past year average time to close issues: 26 days
Past year average time to close pull requests: 6 days
Past year issue authors: 19
Past year pull request authors: 8
Past year average comments per issue: 2.38
Past year average comments per pull request: 0.73
Past year merged pull request: 5
Past year bot issues: 0
Past year bot pull requests: 0
Top Issue Authors
- andig (4)
- gabibguti (3)
- pjebs (2)
- F21 (2)
- slnt (2)
- MattCosturos (2)
- Jonathan-Landeed (2)
- mhr3 (2)
- bobg (2)
- alexandear (2)
- jayjanssen (1)
- ianlopshire (1)
- sgg (1)
- rayjlinden (1)
- thediveo (1)
Top Pull Request Authors
- jbiel (2)
- pjebs (2)
- vincentbernat (2)
- nelz9999 (2)
- alexandear (2)
- astak16 (2)
- MattCosturos (2)
- sgg (2)
- cenkalti (2)
- DomParfitt (1)
- nirrozenbaum (1)
- dvrkps (1)
- TonPC64 (1)
- Oppodelldog (1)
- kubahorak (1)
Top Issue Labels
- stale (7)
- v5 (5)
- bug (3)
- feature request (3)
- v4 (2)
- wontfix (1)
- enhancement (1)
Top Pull Request Labels
- v4 (2)
Package metadata
- Total packages: 9
- Total downloads: unknown
- Total docker downloads: 38,295,829,487
- Total dependent packages: 30,819 (may contain duplicates)
- Total dependent repositories: 57,875 (may contain duplicates)
- Total versions: 65
proxy.golang.org: github.com/cenkalti/backoff/v4
Package backoff implements backoff algorithms for retrying operations. Use Retry function for retrying operations that may fail. If Retry does not meet your needs, copy/paste the function into your project and modify as you wish. There is also Ticker type similar to time.Ticker. You can use it if you need to work with channels. See Examples section below for usage examples.
- Homepage: https://github.com/cenkalti/backoff
- Documentation: https://pkg.go.dev/github.com/cenkalti/backoff/v4#section-documentation
- Licenses: MIT
- Latest release: v4.3.0 (published over 1 year ago)
- Last Synced: 2025-09-05T06:39:05.657Z (1 day ago)
- Versions: 10
- Dependent Packages: 16,728
- Dependent Repositories: 22,312
- Docker Downloads: 29,608,133,193
-
Rankings:
- Docker downloads count: 0.014%
- Dependent packages count: 0.021%
- Dependent repos count: 0.042%
- Average: 0.683%
- Stargazers count: 1.275%
- Forks count: 2.062%
proxy.golang.org: github.com/cenkalti/backoff
Package backoff implements backoff algorithms for retrying operations. Use Retry function for retrying operations that may fail. If Retry does not meet your needs, copy/paste the function into your project and modify as you wish. There is also Ticker type similar to time.Ticker. You can use it if you need to work with channels. See Examples section below for usage examples.
- Homepage: https://github.com/cenkalti/backoff
- Documentation: https://pkg.go.dev/github.com/cenkalti/backoff#section-documentation
- Licenses: MIT
- Latest release: v2.2.1+incompatible (published about 6 years ago)
- Last Synced: 2025-09-05T10:31:51.501Z (about 22 hours ago)
- Versions: 7
- Dependent Packages: 10,815
- Dependent Repositories: 30,189
- Docker Downloads: 6,340,703,279
-
Rankings:
- Dependent packages count: 0.019%
- Dependent repos count: 0.033%
- Docker downloads count: 0.063%
- Average: 0.703%
- Stargazers count: 1.292%
- Forks count: 2.107%
proxy.golang.org: github.com/cenkalti/backoff/v3
Package backoff implements backoff algorithms for retrying operations. Use Retry function for retrying operations that may fail. If Retry does not meet your needs, copy/paste the function into your project and modify as you wish. There is also Ticker type similar to time.Ticker. You can use it if you need to work with channels. See Examples section below for usage examples.
- Homepage: https://github.com/cenkalti/backoff
- Documentation: https://pkg.go.dev/github.com/cenkalti/backoff/v3#section-documentation
- Licenses: MIT
- Latest release: v3.2.2 (published over 5 years ago)
- Last Synced: 2025-09-05T06:39:02.184Z (1 day ago)
- Versions: 7
- Dependent Packages: 3,276
- Dependent Repositories: 5,374
- Docker Downloads: 2,346,993,015
-
Rankings:
- Dependent packages count: 0.073%
- Docker downloads count: 0.094%
- Dependent repos count: 0.109%
- Average: 0.735%
- Stargazers count: 1.292%
- Forks count: 2.107%
proxy.golang.org: github.com/cenkalti/backOff/v3
- Homepage:
- Documentation: https://pkg.go.dev/github.com/cenkalti/backOff/v3#section-documentation
- Licenses: mit
- Latest release: v3.2.2 (published over 5 years ago)
- Last Synced: 2025-09-04T06:06:53.203Z (2 days ago)
- Versions: 7
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 5.536%
- Average: 5.721%
- Dependent repos count: 5.907%
proxy.golang.org: github.com/cenkalti/backOff/v5
- Homepage:
- Documentation: https://pkg.go.dev/github.com/cenkalti/backOff/v5#section-documentation
- Licenses: mit
- Latest release: v5.0.3 (published about 1 month ago)
- Last Synced: 2025-09-05T06:38:47.942Z (1 day ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 5.7%
- Average: 5.891%
- Dependent repos count: 6.082%
proxy.golang.org: github.com/cenkalti/backoff/v5
Package backoff implements backoff algorithms for retrying operations. Use Retry function for retrying operations that may fail. If Retry does not meet your needs, copy/paste the function into your project and modify as you wish. There is also Ticker type similar to time.Ticker. You can use it if you need to work with channels. See Examples section below for usage examples.
- Homepage: https://github.com/cenkalti/backoff
- Documentation: https://pkg.go.dev/github.com/cenkalti/backoff/v5#section-documentation
- Licenses: MIT
- Latest release: v5.0.3 (published about 1 month ago)
- Last Synced: 2025-09-05T06:38:46.166Z (1 day ago)
- Versions: 5
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 5.897%
- Average: 6.094%
- Dependent repos count: 6.292%
proxy.golang.org: github.com/Cenkalti/backoff
Package backoff implements backoff algorithms for retrying operations. Use Retry function for retrying operations that may fail. If Retry does not meet your needs, copy/paste the function into your project and modify as you wish. There is also Ticker type similar to time.Ticker. You can use it if you need to work with channels. See Examples section below for usage examples.
- Homepage: https://github.com/Cenkalti/backoff
- Documentation: https://pkg.go.dev/github.com/Cenkalti/backoff#section-documentation
- Licenses: MIT
- Latest release: v2.2.1+incompatible (published about 6 years ago)
- Last Synced: 2025-09-05T06:38:47.794Z (1 day ago)
- Versions: 7
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.088%
- Average: 6.292%
- Dependent repos count: 6.495%
proxy.golang.org: github.com/cenkalti/backOff/v4
- Homepage:
- Documentation: https://pkg.go.dev/github.com/cenkalti/backOff/v4#section-documentation
- Licenses: mit
- Latest release: v4.3.0 (published over 1 year ago)
- Last Synced: 2025-09-05T06:38:47.792Z (1 day ago)
- Versions: 10
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%
proxy.golang.org: github.com/cenkalti/backOff
Package backoff implements backoff algorithms for retrying operations. Use Retry function for retrying operations that may fail. If Retry does not meet your needs, copy/paste the function into your project and modify as you wish. There is also Ticker type similar to time.Ticker. You can use it if you need to work with channels. See Examples section below for usage examples.
- Homepage: https://github.com/cenkalti/backOff
- Documentation: https://pkg.go.dev/github.com/cenkalti/backOff#section-documentation
- Licenses: MIT
- Latest release: v2.2.1+incompatible (published about 6 years ago)
- Last Synced: 2025-09-05T06:39:01.402Z (1 day ago)
- Versions: 7
- Dependent Packages: 0
- Dependent Repositories: 0
-
Rankings:
- Dependent packages count: 6.999%
- Average: 8.173%
- Dependent repos count: 9.346%
Dependencies
- actions/checkout v3 composite
- actions/setup-go v3 composite