ph4r05/laravel-queue-database-ph4
Composer 安装命令:
composer require ph4r05/laravel-queue-database-ph4
包简介
Laravel Database queue driver with optimistic locking
README 文档
README
Laravel database queue implementation using optimistic locking. Increases concurrency, eliminates deadlocks.
Installation
- Install this package via composer using:
composer require ph4r05/laravel-queue-database-ph4
- Create job table
php artisan queue_ph4:table php artisan migrate
- Queue configuration
<?php // config/queue.php return [ 'database_ph4' => [ 'driver' => 'database_ph4', 'table' => 'jobs_ph4', 'queue' => 'default', 'retry_after' => 4, 'num_workers' => 1, 'window_strategy' => 1, ], ];
- The
num_workersshould correspond to the number of workers processing jobs in the queue. window_strategy.- 0 means worker selects one available job for processing. Smaller throughput, job ordering is preserved as with pessimistic locking.
- 1 means workers will select
num_workersnext available jobs and picks one at random. Higher throughput with slight job reordering (for more info please refer to the blog)
To use the optimistic locking you can now change your .env:
QUEUE_DRIVER=database_ph4
Usage
Once you completed the configuration you can use Laravel Queue API. If you used other queue drivers you do not need to change anything else. If you do not know how to use Queue API, please refer to the official Laravel documentation: http://laravel.com/docs/queues
Testing
Run the tests with:
vendor/bin/phpunit
Blog post about optimistic locking
https://ph4r05.deadcode.me/blog/2017/12/23/laravel-queues-optimization.html
Benefits:
- No need for explicit transactions. Single query auto-commit transactions are OK.
- No DB level locking, thus no deadlocks. Works also with databases without deadlock detection (older MySQL).
- Job executed exactly once (as opposed to pessimistic default DB locking)
- High throughput.
- Tested with MySQL, PostgreSQL, Sqlite.
Cons:
- Job ordering can be slightly shifted with multiple workers (reordering 0-70 in 10 000 jobs)
Contribution
You can contribute to this package by discovering bugs and opening issues. Please, add to which version of package you create pull request or issue.
Donations
Thank you for all your support!
Monero:
87iMuZKqgBZbxjvjJaieTqLBsW3VKtkiuRXL2arcr8eiL4eK8kFi4QbaXCXGgmNWYp5Linpd9pj5McFZ8SQevkenGuZWMCT
Bitcoin:
17hzavLCXqavzmWEEjtX54VeCJVmbrHZQC
ph4r05/laravel-queue-database-ph4 适用场景与选型建议
ph4r05/laravel-queue-database-ph4 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 47.02k 次下载、GitHub Stars 达 50, 最近一次更新时间为 2017 年 12 月 23 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 ph4r05/laravel-queue-database-ph4 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 ph4r05/laravel-queue-database-ph4 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 47.02k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 50
- 点击次数: 23
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-12-23