Event Sourcing & CQRS
Last updated
Was this helpful?
Last updated
Was this helpful?
Event Sourcing is a design pattern where all changes to the application state are stored as a sequence of events
Event Sourcing ensures that all changes to application state are stored as a sequence of events.
Storing a log of all events provides an "natural" audit trail (журнал аудита, контрольный журнал) ()
Partitioning PLog into PLogPartition provides horizontal scalability
CQRS (Command and Query Responsibility Segregation) is a design pattern where different data models are used for writes (by Commands) and reads (by Queries)
Implementing CQRS in your application can maximize its performance, scalability, and security ()