Articles tagged with: Patterns & Practices

Course Review: Microservices Architecture (Pluralsight)

Summary: Review of the Pluralsight course 'Microservices Architecture'.


Course Review: Modern Software Architecture: Domain Models CQRS and Event Sourcing (Pluralsight)

Summary: Review of Pluralsight course 'Modern Software Architecture: Domain Models, CQRS, and Event Sourcing'.


Let's talk about idempotency

Summary: The concept of idempotency in computer science, explaining its definition, benefits, and how to achieve it using an idempotency key. It also explores alternative approaches and the challenges of achieving pure idempotency in complex systems.


Bulk Queries in MySQL vs PostgreSQL

Summary: In MySQL, it's more efficient to split large queries into smaller chunks to avoid lock contention and potential deadlocks, unlike other RDBMS where bulk queries are preferred.


Always send emails asynchronously

Summary: Advice against sending emails synchronously, suggesting instead to use asynchronous methods, such as enqueuing tasks or using event-based architecture, to improve efficiency and reduce complexity.