CQRS—Event Sourcing

By Pyxis

CQRS is a system architecture or design pattern that separates the act of reading data (query) from taking action (command) in order to produce a system which easily scales and provides some useful benefits (such as “playable” event logs) that make the maintenance of the system less burdensome.

Learn more about these topics

Articles

Blog posts and Twitter

Forums and mailing lists

Code examples

Videos

Debates and threads

Autres articles qui pourraient vous intéresser

Creation of Custom Software | Done Technologies

Do you care about testing?

I recently “talked” to my past self of several years ago, and we came to talk about unit testing. Back then, I did not care about unit testing. Today, I still do not care, but in a different way. Despite years passed, many of the issues raised in this conversation are still relevant. Do you...

Imagine a world where the past is the only truth… all the truth (part 1)

Your computer systems surely contain several structured and relational databases. You must regularly make copies to avoid losing information. Despite these precautions, you lose all the intermediate states (system states after a past event) of your information systems. If all you are interested in is the final state, it is not too serious. However, it...

The rubber duck debugging method or the art of solving a problem when you’re a programmer

When you write code for software, if there’s one thing a programmer knows for sure, it’s that at some point it will get stuck. No matter how much experience you have, you will find yourself at a dead end with a programming problem that you can’t solve right away. The question to ask yourself in...