easyswoole/queue
Composer 安装命令:
composer require easyswoole/queue
包简介
A simple Queue implementation integrated into easySwoole
README 文档
README
安装
composer require easyswoole/queue
队列驱动
任何队列驱动都必须实现EasySwoole\Queue\QueueDriverInterface这个接口定义。且实现的对象一定是必须可被克隆(可以看Queue中的Producer方法即知道为何)。
队列在被加载到对应topic的Producer和Consumer时,都会被分别执行一次init()方法。
创建队列
use EasySwoole\Queue\Driver\RedisQueue; use EasySwoole\Queue\Queue; use EasySwoole\Redis\Config; $config = new Config([ 'host'=>"", 'port'=>"", 'auth'=>"" ]); $driver = new RedisQueue($config); $queue = new Queue($driver);
普通生产
$job = new Job();
$job->setJobData("this is my job data time time ".date('Ymd h:i:s'));
$queue->producer("topic")->push($job);
普通消费
$job = $queue->consumer("topic")->pop(); //或者是自定义进程中 $queue->consumer("topicName")->listen(function (Job $job){ var_dump($job); });
CLI 单独使用
use EasySwoole\Queue\Driver\RedisQueue; use EasySwoole\Queue\Job; use EasySwoole\Queue\Queue; use EasySwoole\Redis\Config; use Swoole\Coroutine; use Swoole\Coroutine\Scheduler; require "vendor/autoload.php"; $sc = new Scheduler(); $sc->add(function (){ $config = new Config([ 'host'=>"", 'port'=>"", 'auth'=>"" ]); $driver = new RedisQueue($config); $queue = new Queue($driver); Coroutine::create(function ()use($queue){ while (1){ Coroutine::sleep(3); $job = new Job(); $job->setJobData("job test create at ".time()); try { $queue->producer("test")->push($job); }catch (\Throwable $throwable){ } } }); Coroutine::create(function ()use($queue){ while (1){ Coroutine::sleep(5); $job = new Job(); $job->setJobData("job another create at ".time()); try { $queue->producer("another")->push($job); }catch (\Throwable $throwable){ } } }); Coroutine::create(function ()use($queue){ $queue->consumer("test")->listen(function (Job $job){ var_dump($job->getJobData() ." hande in test"); },[],function (){ }); }); Coroutine::create(function ()use($queue){ $queue->consumer("another")->listen(function (Job $job){ var_dump($job->getJobData() ." hande in another"); },[],function (){ }); }); }); $sc->start();
延迟任务
$job = new Job();
$job->setJobData("this is my job data time time ".date('Ymd h:i:s'));
$job->setDelayTime(5);//设置延后时间
$queue->producer("topic")->push($job);
可信任务
$job = new Job();
$job->setJobData("this is my job data time time ".date('Ymd h:i:s'));
$job->setRetryTimes(3);//任务如果没有确认,则会执行三次
$job->setWaitConfirmTime(5);//如果5秒内没确认任务,会重新回到队列。默认为3秒
$queue->producer("topic")->push($job);//投递任务
//确认一个任务
$queue->consumer("topic")->confirm($job);
消费者控制
当队列未pop到job时:
/** @var \EasySwoole\Queue\Queue $queue */ $queue->consumer("topic")->setOnBreak(function(\EasySwoole\Queue\Consumer $consumer) { // todo })->listen(function (\EasySwoole\Queue\Job $job){ });
设置breakTime:
/** @var \EasySwoole\Queue\Queue $queue */ $queue->consumer("topic")->setBreakTime(0.1);
easyswoole/queue 适用场景与选型建议
easyswoole/queue 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 34.47k 次下载、GitHub Stars 达 12, 最近一次更新时间为 2017 年 12 月 07 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「redis」 「queue」 「beanstalkd」 「easyswoole」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 easyswoole/queue 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 easyswoole/queue 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 easyswoole/queue 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
A simple bundle that integrate Pheanstalk with Symfony
PHP7.1+ client for beanstalkd work queue with no dependencies
Microservice RPC through message queues.
PHP AMQP Binding Library
A Laravel package to monitor queue jobs.
The CodeIgniter Redis package
统计信息
- 总下载量: 34.47k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 12
- 点击次数: 9
- 依赖项目数: 8
- 推荐数: 0
其他信息
- 授权协议: Apache-2.0
- 更新时间: 2017-12-07