How to implement effective retry logic in C#
In an ideal world, every operation we execute, every API we call, and every database we query, would always work flawlessly. Unfortunately, we live in a world where network outages,…
Favourite tutorials for developers
In an ideal world, every operation we execute, every API we call, and every database we query, would always work flawlessly. Unfortunately, we live in a world where network outages,…
Implementing a retry decorator can protect you against unexpected one-off exceptions that caused by by a temporary drop of internet-connection, too many concurrent writes, a temporarily unresponsive source system, or…