Level 10
During my searching, I found out https://github.com/ludovicose/transaction-outbox.
Seems worth a try
I am working on a project which some of its features require dispatching a job before returning a response to the client, and i want to put the dispatched job on Amazon SQS (Simple Queue Service), the problem that made me consider using the outbox-pattern is "what will happen if Laravel couldn't put the dispatched job on SQS for any reason?". I have found the ludovicose/transaction-outbox library
but as far as I understood, it JUST supports RabbitMQ and Redis. So did anyone apply this pattern before with Laravel? or know a good library?
Please or to participate in this conversation.