Last active
June 23, 2016 04:38
-
-
Save danveloper/f01525aa649f76854a0212dc5aec6c75 to your computer and use it in GitHub Desktop.
Fibonacci Backoff Strategy
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import groovy.transform.Memoized | |
class FibBackoff { | |
int tryNum | |
void backoff() { | |
tryNum = fib(tryNum) | |
sleep(tryNum * 1000) | |
} | |
@Memoized | |
private int fib(n) { | |
if (n < 2) return 1 | |
return fib(n - 1) + fib(n - 2) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment