My goal is to launch some time consuming functions in the background to avoid user to wait before the server response is rendered.
I have a Symfony project where I am la
We do our asynchronous processing with Gearman job server - http://gearman.org/
There are bundles that streamlines the use of Gearman in a Symfony project. We use mmoreram/GearmanBundle - https://github.com/mmoreram/GearmanBundle. Basically, you create your worker, which can be a service, and call it for time consuming tasks. We use it for data imports that take long time.