This is a calculator for the retriable Ruby gem. Retriable is a simple DSL to retry failed code blocks with randomized exponential backoff time intervals. This is especially useful when interacting external APIs, remote services, or file system calls.

Retriable.retriable(tries: 1, base_interval: 1, multiplier: 1, rand_factor: 1) do
  # code here...
end
Retry #MinAverageMax
stopstopstop