❔ Is CQRS pattern still valid and is it still used in 2023. What are your opinions ?
What do you think ?
3 Replies
yes, when the complexity is appropriate
Yes. In complex applications it makes sense to separate your reads and writes to optimize and scale said operations on a large scale.
E.g., the majority of Netflix users are reading content globally; thus, the read operations must be heavily optimized and distributed globally.
Uploading new content is possible only for, e.g., Netflix administrators or partners. This does not require such a distributed system.
Was this issue resolved? If so, run
/close
- otherwise I will mark this as stale and this post will be archived until there is new activity.