This post is the third and final installment on the retry pattern following on
from implementing a simple retry pattern in c#
[https://alastaircrabtree.com/implementing-a-simple-retry-pattern-in-c/] and the retry pattern
for async tasks
[https://alastaircrabtree.…
This post is a follow on from Implementing a simple retry pattern in c#
[https://alastaircrabtree.com/implementing-a-simple-retry-pattern-in-c/].
Tasks, async and await are rapidly becoming be default API flavours in many
dotnet libraries and the…
The latests release of LazyCache [https://github.com/alastairtree/LazyCache], my
open source cache library based on ObjectCache
[https://msdn.microsoft.com/en-us/library/system.runtime.caching.objectcache%28v=vs.110%29.aspx?f=255&…
WebApi controller actions can return a variety of response types:
HttpResponseMessage, IHttpActionResult, CLR objects and then the Task based
variety of each for async actions. But which one is best? And how do we unit…