From the Symfony book: Managing asynchronous code with Symfony is the job of the Messenger Component. When some logic should be executed asynchronously, send a message to a messenger bus. The bus stores the message in a queue and returns immediately to let the flow of operations resume as fast as possible.
https://symfony.com/doc/current/the-fast-track/en/18-async.html#understanding-messenger
Leave a Reply