Remix.run Logo
rawgabbit 5 days ago

I wonder why the author views CQRS negatively and then later gives this classic CQRS advice:

      >What this means in practice is having one service that knows about the state - i.e. it talks to a database - and other services that do stateless things. Avoid having five different services all write to the same table. Instead, have four of them send API requests (or emit events) to the first service, and keep the writing logic in that one service.
sfn42 4 days ago | parent | next [-]

Because you dont need CQRS to achieve that.

nchmy 5 days ago | parent | prev [-]

i also found the cqrs shade to be peculiar