Glossary

4. CQRS introduction

The write path (order placement, matching) uses the event store as its source of truth. - Read models (order book, market summary, portfolio) are built as projections that subscribe to the event stream. - Projections run in a separate process, ensuring read-heavy traffic does not affect write perfor

Learn More

Related Terms