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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
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
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package busyphp/queue contains the following files

Loading the files please wait ....