Remix.run Logo
zknill an hour ago

I think you might struggle to "scale the read and write sides independently".

It's a real stretch to be describing a postgres view as CQRS

andersmurphy 16 minutes ago | parent | next [-]

Sqlite can scale CQRS to 100000 events per second on a relatively small VPS. That's 10x what the author achieves with postgres.

You can scale them independently in that you can control the rate at which your views are read and the batch size of your updates.

The whole big win wirh CQRS is it allows for very efficient batching.

anthonylevine an hour ago | parent | prev [-]

Huh?

That's EXACTLY what CQRS.

I think you might struggle to understand CQRS.