I using Laravel queues using a database driver and supervisor to keep a queue worker running all the time:
[program:laravel_queue] command=php artisan queue:
From Laravel docs you can use numprocs=3 to spawn 3 processes.
numprocs=3
And also specify a queue: command=php artisan queue:listen --queue=myqueue --tries=5
command=php artisan queue:listen --queue=myqueue --tries=5