I want to run a Symfony Console Command from a controller. How to do so is explained in the documentation.
Now my controller waits until the Command is finished. But I want the Command to be executed as a background task (like a cronjob). So the controller doesn't need to wait to complete the Command, only start it.
Is this possible with Symfony Console?