Download the PHP package busyphp/queue without Composer
On this page you can find all versions of the php package busyphp/queue. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download busyphp/queue
More information about busyphp/queue
Files in busyphp/queue
Download busyphp/queue
More information about busyphp/queue
Files in busyphp/queue
Vendor busyphp
Package queue
Short Description 基于ThinkPHP官方改进的一个消息队列服务,它支持消息队列的一些基本特性,发布,获取,执行,删除,重发,失败处理,延迟执行,超时控制,多队列,内存限制 ,启动,停止,守护等
License Apache-2.0
Homepage http://www.harter.cn/?form=BusyPHP&plugin=busyphp/queue
Package queue
Short Description 基于ThinkPHP官方改进的一个消息队列服务,它支持消息队列的一些基本特性,发布,获取,执行,删除,重发,失败处理,延迟执行,超时控制,多队列,内存限制 ,启动,停止,守护等
License Apache-2.0
Homepage http://www.harter.cn/?form=BusyPHP&plugin=busyphp/queue
Please rate this library. Is it a good library?
Informations about the package queue
消费队列模块
安装方式
安装完成后可以通过后台管理 > 开发模式 > 插件管理进行
安装/卸载/管理
命令行
cd
到到项目根目录下执行
queue:work
命令
该命令将启动一个 work 进程来处理消息队列
参数 | 默认值 | 说明 |
---|---|---|
connection | sync | 设置队列连接器名称,默认依据 config/queue.php 中的 default 确定 |
--queue | default | 设置执行的队列名称 |
--once | - | 仅处理队列上的下一个任务后就退出 |
--delay | 0 | 如果本次任务执行抛出异常且任务未被删除时,设置其下次执行前延迟多少秒 |
--memory | 128 | 该进程允许使用的内存上限,以 M 为单位 |
--timeout | 60 | 该进程的允许执行的最长时间,以秒为单位 |
--sleep | 3 | 如果队列中无任务,则多长时间后重新检查 |
--tries | 0 | 如果任务已经超过尝试次数上限,0为不限,则触发当前任务类型下的failed()方法 |
queue:listen
命令
listen命令所在的父进程会创建一个单次执行模式的work子进程,并通过该work子进程来处理队列中的下一个消息,当这个work子进程退出之后,listen命令所在的父进程会监听到该子进程的退出信号,并重新创建一个新的单次执行的work子进程
参数 | 默认值 | 说明 |
---|---|---|
connection | sync | 设置队列连接器名称,默认依据 config/queue.php 中的 default 确定 |
--queue | default | 设置执行的队列名称 |
--delay | 0 | 如果本次任务执行抛出异常且任务未被删除时,设置其下次执行前延迟多少秒 |
--memory | 128 | 子进程允许使用的内存上限,以 M 为单位 |
--timeout | 60 | 子进程的允许执行的最长时间,以秒为单位 |
--sleep | 3 | 如果队列中无任务,则多长时间后重新检查 |
--tries | 0 | 如果任务已经超过尝试次数上限,0为不限,则触发当前任务类型下的failed()方法 |
queue:failed
列出所有失败的任务
queue:flush
刷新所有失败的任务
queue:forget
强制执行一条失败的任务
queue:retry
将一批失败的任务进行重试
queue:restart
重启进程
配置 config/busy-queue.php
创建任务类
发布任务
All versions of queue with dependencies
PHP Build Version
Package Version
Requires
php Version
>=8.0.0
ext-json Version *
busyphp/busyphp Version ^7.0
nesbot/carbon Version ^2.16
symfony/process Version ^6.0
ext-json Version *
busyphp/busyphp Version ^7.0
nesbot/carbon Version ^2.16
symfony/process Version ^6.0
The package busyphp/queue contains the following files
Loading the files please wait ....