Download the PHP package 943626451/my-queue without Composer
On this page you can find all versions of the php package 943626451/my-queue. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download 943626451/my-queue
More information about 943626451/my-queue
Files in 943626451/my-queue
Package my-queue
Short Description A async-queue library built on top of swoole, flexable multi-consumer, coroutine supported.
License MIT
Informations about the package my-queue
Aint Queue
A async-queue library built on top of swoole, flexable multi-consumer, coroutine supported. 中文说明
Feature
- Default Redis driver
- Delayed job
- Custom job retries and times
- Custom failed callback
- Job middleware
- Queue snapshot event
- Concurrent processing, flexable multi-worker
- Worker coroutine support
- Beautiful dashboard
Required
- PHP 7.2+
- Swoole 4.4+
- Redis 3.2+ (redis driver)
Install
Usage
Config
By default, aint-queue will require config/aint-queue.php
as default config. If not exist, /vendor/littlesqx/aint-queue/src/Config/config.php
will be the final config file.
All the options:
name | type | comment | default |
---|---|---|---|
channel | string | The queue unit, every queue pusher and queue listener work for. Multiple channel supported, use --channel option. |
default |
driver.class | string | Queue driver class, implements QueueInterface. | Redis |
driver.connection | map | Queue driver's config. | |
pid_path | string | The path of listener master pid file. Noted that permission required. | /var/run/aint-queue |
consumer.sleep_seconds | int | Sleep seconds after every empty pop from queue. | 1 |
consumer.memory_limit | int | Mb. Worker will reload when its memory usage exceeds the limit. | 96 |
consumer.dynamic_mode | bool | Determine whether worker's number flex dynamically. | true |
consumer.capacity | int | The capacity that every consumer can handle in health and in short time, it affects the worker number when dynamic-mode. | 5 |
consumer.flex_interval | int | every flex_interval seconds monitor process try to flex the worker number. Only work when consumer.dynamic_mode = true. |
5 |
consumer.min_worker_number | int | Min expansion. | 5 |
consumer.max_worker_number | int | Max expansion. | 30 |
consumer.max_handle_number | int | Current consumer's max job-handle time. 0 means no limit. |
0 |
job_snapshot | map | Every interval seconds, handles will be executed. Handle must implements JobSnapshotterInterface. |
Push job
You can use it in your project running via fpm/cli.
Manage Queue
We recommend that using Supervisor
to monitor and control the listener.
Testing
Contributing
You can contribute in one of three ways:
- File bug reports using the issue tracker.
- Answer questions or fix bugs on the issue tracker.
- Contribute new features or update the wiki.
The code contribution process is not very formal. You just need to make sure that you follow the PSR-2, PSR-12 coding guidelines. Any new code contributions must be accompanied by unit tests where applicable.
License
MIT
All versions of my-queue with dependencies
ext-json Version *
ext-swoole Version >=4.4
predis/predis Version ^1.1
psr/log Version ^1.1
jeremeamia/superclosure Version ^2.4
symfony/console Version ^4.3
illuminate/pipeline Version ^6.16
monolog/monolog Version ^2.0