Add resouce for cqrs and event sourcing (#1307)

This commit is contained in:
Leonardo Romanini
2022-06-28 08:02:16 -03:00
committed by GitHub
parent fae0bef2f8
commit 2939a7e7a1

View File

@ -1 +1,6 @@
# Cqrs
# 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.
<ResourceGroupTitle>Free Content</ResourceGroupTitle>
<BadgeLink colorScheme='blue' badgeText='Reference Model' href='https://docs.microsoft.com/en-us/azure/architecture/patterns/cqrs'>CQRS Pattern</BadgeLink>