Showing results for March 2017 - Cesar de la Torre

Mar 26, 2017
Post comments count0
Post likes count0

Using Resilient Entity Framework Core Sql Connections and Transactions: Retries with Exponential Backoff

Cesar De la Torre
Cesar De la Torre

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...

Mar 23, 2017
Post comments count0
Post likes count0

Using Domain Events within a .NET Core Microservice

Cesar De la Torre
Cesar De la Torre

This blog post is related to the previous blog post named “Domain Events vs. Integration Events in Domain-Driven Design and microservices architectures” : https://devblogs.microsoft.com/cesardelatorre/domain-events-vs-integration-events-in-domain-driven-design-and-microservices-architectures/ Since I’m writing content related to “Microservices a...