Mar 26, 2017
0
0
Using Resilient Entity Framework Core Sql Connections and Transactions: Retries with Exponential Backoff
There are many possible approaches to implement retries logic with exponential backoff also depending on the context/protocol, etc. (Database connections, HTTP requests, etc.) Retries with exponential backoff is a technique that assumes failure by nature and attempts to retry the operation, with an exponentially increasing wait time, until a...