1 مستودع
Interfaces that decouple retry logic from specific delay or wait algorithms.
Distinct from Interface-Based Decoupling: Focuses on the specific application of interface decoupling for retry wait strategies, rather than general class-based decoupling.
Explore 1 awesome GitHub repository matching devops & infrastructure · Retry Strategy Interfaces. Refine with filters or upvote what's useful.
This is a Go library providing a framework for managing repetitive task execution and implementing exponential backoff strategies. It serves as a concurrency tool designed to prevent system overload during failures by retrying operations with increasing delays. The project implements a retry strategy framework that manages attempt limits and timeouts during unstable network or system calls. It specifically provides an implementation of the exponential backoff algorithm to handle failing operations. The library covers reliability patterns for mitigating transient failures and service outages,
Decouples the retry logic from specific wait algorithms using interfaces to allow custom delay implementations.