[Video] Using Polly to improve .NET applications resilience

I added a new video, this time revisiting the subject of a past post: using the Polly library to handle errors and improve application resiliency. The original post is here and you can check out the source code here on GitHub. Cyaz

July 29, 2017 · 1 min · 42 words · João Antunes

Simpler error handling in .NET applications using Polly

Just think how many times you had to write some code to handle errors, and that handling required more than just logging and proceed with life as if nothing happened. If retries are required, or a cool down time, that’s a good amount of logic to roll for those situations. Well, there’s a NuGet for that (I guess that’s our version of there’s an app for that). Polly is a “library that allows developers to express transient exception and fault handling policies such as Retry, Retry Forever, Wait and Retry, or Circuit Breaker in a fluent manner....

November 8, 2016 · 5 min · 942 words · João Antunes