DEV Community

Discussion on: Demystifying Laravel Queues

Collapse
 
okolbay profile image
andrew • Edited

would be nice to know, how it works under the hood?

does this listener requires additional dependencies (supervisor, cron)
or its a long-running php-cli process (hence no opcache), is it restarting itself of leaking? Im curious because from my experinece long-running processes (queue listeners) is one of the last thing I would implement in php

Collapse
 
xanadev profile image
abid

You'll need to setup supervisor to start as many workers as you need and watch them, a sample is provided in the laravel doc here