You can familiarize yourself with https://laravel.com/docs/5.8/queues#customizing-the-queue-and-connection
Aug 26, 2019
3
Level 40
Queue jobs with multiple threads
I have some jobs that the user requests and it will be executed in the queue with a gap of 1.5 seconds between each job.
I need to execute another job every 15 seconds to fetch some notifications in a RESTFUL API of the jobs that the user requested.
Solution I have so far was to add a fetch notification job between every 15 jobs that the user requested.
I would like to execute the fetch notification job as a background without inject it between the user jobs requested. Also it should not delay the jobs that the user requested.
Level 13
Please or to participate in this conversation.