Download the PHP package shipsaas/laravel-priority-queue without Composer
On this page you can find all versions of the php package shipsaas/laravel-priority-queue. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download shipsaas/laravel-priority-queue
More information about shipsaas/laravel-priority-queue
Files in shipsaas/laravel-priority-queue
Package laravel-priority-queue
Short Description Priority Queue implementation for your Laravel Applications
License MIT
Informations about the package laravel-priority-queue
ShipSaaS - Laravel Priority Queue Driver
A simple Priority Queue Driver for your Laravel Applications to serve your priority messages and makes users happy 🔋.
With the famous Repository Pattern of Laravel, Priority Queue Driver is easily get injected into Laravel's Lifecycle without any hassle/hurdle.
We can use built-in artisan command php artisan queue:work
😎.
Supports
- Laravel 11 (supports by default)
- Laravel 10 (supports until Laravel drops the bug fixes at August 6th, 2024)
- PHP 8.2 & 8.3
- Any database that Laravel supported.
Architecture Diagram
Why Priority Queue Driver use Database?
- Everybody knows Database (MySQL, PgSQL, etc) 👀.
- Easy and simple to implement ❤️.
- Utilize the
ORDER BY
andINDEX
for fast queue msgs pop process. Faster than any other stuff 🔥. - Highest visibility (you can view the jobs and their data in DB) ⭐️.
- Highest flexibility (you can change the weight directly in DB to unblock important msgs) 💰.
- No extra tool involved. Just Laravel 🥰.
Install Laravel Priority Queue
One-Time Setup
Export and run the migration (one-time). We don't load migration by default just in case you want to customize the migration schema 😎.
Open config/queue.php
and add this to the connections
array:
Scale/Reliability Consideration
It is recommended to use a different database connection (eg mysql_secondary
) to avoid the worker processes ramming your
primary database.
Usage
The Job Weight
The default job weight is 500.
You can define a hardcoded weight for your job by using the $jobWeight
property.
Or if you want to calculate the job weight on runtime, you can use the UseJobPrioritization
trait:
Dispatch the Queue
You can use the normal Dispatcher or Queue Facade,... to dispatch the Queue Msgs
As primary queue
And you're ready to roll.
As secondary queue
Specify the database-priority
connection when dispatching a queue msg.
I get that you guys might don't want to explicitly put the connection name. Alternatively, you can do this:
Run The Queue Worker
Nothing different from the Laravel Documentation 😎. Just need to include the database-priority
driver.
Testing
Run composer test
😆
Available Tests:
- Unit Testing
- Integration Testing against MySQL and
queue:work
command
Contributors
- Seth Phat
Contributions & Support the Project
Feel free to submit any PR, please follow PSR-1/PSR-12 coding conventions and unit test is a must.
If this package is helpful, please give it a ⭐️⭐️⭐️. Thank you!
License
MIT License