ph4r05/laravel-queue-database-ph4 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

ph4r05/laravel-queue-database-ph4

Composer 安装命令:

composer require ph4r05/laravel-queue-database-ph4

包简介

Laravel Database queue driver with optimistic locking

README 文档

README

Latest Stable Version Build Status Total Downloads StyleCI License

Laravel database queue implementation using optimistic locking. Increases concurrency, eliminates deadlocks.

Installation

  1. Install this package via composer using:
composer require ph4r05/laravel-queue-database-ph4
  1. Create job table
php artisan queue_ph4:table
php artisan migrate
  1. 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_workers should 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_workers next 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 我们能提供哪些服务?
定制开发 / 二次开发

基于 ph4r05/laravel-queue-database-ph4 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 47.02k
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 50
  • 点击次数: 23
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 50
  • Watchers: 4
  • Forks: 15
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2017-12-23