mle86/wq
Composer 安装命令:
composer require mle86/wq
包简介
A simple library for work-queue and job handling.
README 文档
README
This package provides an easy way to put PHP tasks of any kind into a work queue such as Beanstalkd or Redis to execute them at a later time.
This is version 0.21.1.
Installation and Dependencies
$ composer require mle86/wq
It requires PHP 8.0+ and has no other dependencies (apart from PHPUnit/Coveralls for development and the PSR-3 interfaces).
Adapter Implementations
You'll also want to install at least one other package
which contains a WorkServerAdapter implementation,
such as:
- mle86/wq-beanstalkd (Beanstalkd server adapter),
- mle86/wq-redis (Redis server adapter),
- mle86/wq-amqp (RabbitMQ server adapter).
Basic Concepts
-
A Job is something which should be done exactly once. Maybe it's sending an e-mail, maybe it's an external API call like a webhook, maybe it's some slow clean-up process. In any case, we're talking about a unit of work that could be executed right away but it would be better for the application's performance to put it in a Work Queue instead, so it can be done asynchronously.
-
A Work Queue is a list of jobs that should be executed at some other time. They are stored in some kind of Work Server. One work server well-known in the PHP world is Beanstalkd. It can store any number of work queues, although it calls them “tubes”.
Different work queues, or tubes, are commonly used to separate job types.
For example, the same work server might have
one “mail” queue for outgoing mails to be sent,
one “cleanup” queue for all kinds of clean-up jobs,
and one “webhook” queue for outgoing web-hook calls.
This package provides some helpful classes to set up a simple work queue system.
Quick Start
This is our Job implementation. It represents an e-mail that can be sent.
<?php use mle86\WQ\Job\AbstractJob; class EMail extends AbstractJob { protected $recipient; protected $subject; protected $message; public function __construct(string $recipient, string $subject, string $message) { $this->recipient = $recipient; $this->subject = $subject; $this->message = $message; } public function send() { if (mail($this->recipient, $this->subject, $this->message)) { // ok, has been sent! } else { throw new \RuntimeException ("mail() failed"); } } }
We have some code using that e-mail class:
<?php use mle86\WQ\WorkServerAdapter\BeanstalkdWorkServer; $mailJob = new EMail("test@myproject.xyz", "Hello?", "This is a test mail."); $workServer = BeanstalkdWorkServer::connect("localhost"); $workServer->storeJob("mail", $mailJob);
And finally, we have our background worker script which regularly checks the work server for new e-mail jobs:
<?php use mle86\WQ\WorkServerAdapter\BeanstalkdWorkServer; use mle86\WQ\WorkProcessor; $queue = "mail"; printf("%s worker %d starting.\n", $queue, getmypid()); $processor = new WorkProcessor(BeanstalkdWorkServer::connect("localhost")); $fn_handler = function(EMail $mailJob) { $mailJob->send(); // don't catch exceptions here, or the WorkProcessor won't see them. }; while (true) { try { $processor->processNextJob($queue, $fn_handler); } catch (\Throwable $e) { echo $e . "\n"; // TODO: add some real logging here } }
Documentation
Class reference:
- Job interface
- AbstractJob base class
- QueueEntry wrapper class
- WorkServerAdapter interface
- AffixAdapter wrapper class
- BlackHoleWorkServer dummy class
- WorkProcessor class
- SignalSafeWorkProcessor class
- JobResult enum class
- JobContext dto class
- Exceptions
mle86/wq 适用场景与选型建议
mle86/wq 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 1.85k 次下载、GitHub Stars 达 2, 最近一次更新时间为 2017 年 04 月 19 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 mle86/wq 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 mle86/wq 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 1.85k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 1
- 依赖项目数: 3
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-04-19