From 2939a7e7a13676c581143674236f7e6b4ca1fd3c Mon Sep 17 00:00:00 2001 From: Leonardo Romanini Date: Tue, 28 Jun 2022 08:02:16 -0300 Subject: [PATCH] Add resouce for cqrs and event sourcing (#1307) --- .../content/115-architectural-patterns/103-cqrs.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/101-backend/content/115-architectural-patterns/103-cqrs.md b/content/roadmaps/101-backend/content/115-architectural-patterns/103-cqrs.md index 53209f872..fe13a1a93 100644 --- a/content/roadmaps/101-backend/content/115-architectural-patterns/103-cqrs.md +++ b/content/roadmaps/101-backend/content/115-architectural-patterns/103-cqrs.md @@ -1 +1,6 @@ -# Cqrs \ No newline at end of file +# CQRS and Event Sourcing + +CQRS, or command query responsibility segregation, defines an architectural pattern where the main focus is to separate the approach of reading and writing operations for a data store. CQRS can also be used along with Event Sourcing pattern in order to persist application state as an ordered of sequence events, making it possible to restore data to any point in time. + +Free Content +CQRS Pattern