DEV Community

Discussion on: How we Added Auto-Retries to our C# API Client

Collapse
 
programatt profile image
Matt Phillips

Nice article. I've been looking at some of the concepts in Netflix's OSS client library hystrix github.com/Netflix/Hystrix for my api clients. It's got other useful functions like circuit breakers and incremental backoff on retries. There's even a c# port of it. github.com/Elders/Hystrix.NET