Download the PHP package cryptoman3/safe-queue without Composer
On this page you can find all versions of the php package cryptoman3/safe-queue. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download cryptoman3/safe-queue
More information about cryptoman3/safe-queue
Files in cryptoman3/safe-queue
Package safe-queue
Short Description A Laravel Doctrine friendly daemonising queue worker for Laravel
License MIT
Informations about the package safe-queue
SafeQueue
A Laravel Queue worker that's safe for use with Laravel Doctrine
When to use SafeQueue
- [x] You use Laravel 6 or up
- [x] You use Laravel Doctrine
- [x] Devops say the CPU usage of
queue:listen
is unacceptable - [x] You want to do
php artisan queue:work --daemon
without hitting cascadingEntityManager is closed
exceptions
Compatibility
Version | Supported Laravel Versions |
---|---|
0.1.* | 5.1, 5.2 |
0.2.* | ^5.3.16 |
0.3.* | > 5.4 & <=5.8.* |
0.4.* | ^6.0 & ^7.0 |
0.5.* | ^8.0 |
How it Works
SafeQueue overrides a small piece of Laravel functionality to make the queue worker daemon safe for use with Doctrine. It makes sure that the worker exits if the EntityManager is closed after an exception. For good measure it also clears the EM before working each job.
Installation
Install using composer
Once you've got the codez add the following to your service providers in app.php
Lumen
Create the config file config/safequeue.php
and load it: $app->configure('safequeue');
Usage
All options are identical to Laravel's own queue:work
method.
All versions of safe-queue with dependencies
illuminate/queue Version ^8.0 || ^9.0 || ^10.0 || ^11.0
laravel-doctrine/orm Version ^1.7 || ^2.0