utopia-php / queue
A powerful task queue.
Installs: 31 665
Dependents: 2
Suggesters: 0
Security: 0
Stars: 9
Watchers: 6
Forks: 2
Open Issues: 3
Requires
- php: >=8.0
- utopia-php/cli: 0.19.*
- utopia-php/di: 0.1.*
- utopia-php/servers: 0.1.*
Requires (Dev)
- laravel/pint: ^0.2.3
- phpstan/phpstan: ^1.8
- phpunit/phpunit: ^9.5.5
- swoole/ide-helper: 4.8.8
- workerman/workerman: ^4.0
Suggests
- ext-redis: Needed to support Redis connections
- ext-swoole: Needed to support Swoole.
- workerman/workerman: Needed to support Workerman.
- dev-main
- 0.8.0
- 0.8.0-RC1
- 0.7.0
- 0.6.0
- 0.5.3
- 0.5.2
- 0.5.1
- 0.5.0
- 0.4.1
- 0.4.0
- 0.3.0
- 0.2.0
- 0.1.0
- dev-add-concurrency-manager
- dev-redis-cluster
- dev-debug-set-resource
- dev-add-support-for-concurrency
- dev-feat-use-utopia-docker-base
- dev-feat-multiqueue-server
- dev-feat-github-action
- dev-feat-framework-v2-v2
- dev-feat-get-worker-start
- dev-feat-framework-v2
- dev-fix-error-callback
- dev-promote-new-cli-version
- dev-fix-reset-resources
- dev-feat-connection-ping
- dev-upgrade-libs
- dev-readme-fixes
- dev-feat-di-in-worker-start
- dev-qa-fixes
This package is auto-updated.
Last update: 2024-11-05 01:07:11 UTC
README
Utopia Queue is a powerful Queue library. This library is aiming to be as simple and easy to learn and use. This library is maintained by the Appwrite team.
Although this library is part of the Utopia Framework project it is dependency free and can be used as standalone with any other PHP project or framework.
Getting Started
Install using composer:
composer require utopia-php/queue
Init in your application:
<?php require_once __DIR__ . '/../../vendor/autoload.php'; // Create a worker using the Swoole adapter use Utopia\Queue; use Utopia\Queue\Message; $connection = new Queue\Connection\Redis('redis'); if ($connection->ping()) { var_dump('Connection is ready.'); } else { var_dump('Connection is not ready.'); } $adapter = new Queue\Adapter\Swoole($connection, 12, 'my-queue'); $server = new Queue\Server($adapter); $server ->job() ->inject('message') ->action(function (Message $message) { var_dump($message); }); $server ->error() ->inject('error') ->action(function ($error) { echo $error->getMessage() . PHP_EOL; }); $server ->workerStart() ->action(function () { echo "Worker Started" . PHP_EOL; }); $server->start(); // Enqueue messages to the worker using the Redis adapter $connection = new Redis('redis', 6379); $client = new Client('my-queue', $connection); $client->enqueue([ 'type' => 'test_number', 'value' => 123 ]);
System Requirements
Utopia Framework requires PHP 8.0 or later. We recommend using the latest PHP version whenever possible.
Copyright and license
The MIT License (MIT) http://www.opensource.org/licenses/mit-license.php