Comment on How far can you go without a message queue?parentComments−skyde4yit’s usually done using the outbox pattern.i’m not sure if this pattern can be called a type of saga.you basically have a tiny queue in you db using a special table that you drain to an external queue server.
Comments
it’s usually done using the outbox pattern.
i’m not sure if this pattern can be called a type of saga.
you basically have a tiny queue in you db using a special table that you drain to an external queue server.