visual-craft / work-queue
Work queue using Beanstalk
Installs: 8 992
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 3
Forks: 0
Open Issues: 0
Requires
- php: >=7.4.0
- pda/pheanstalk: ^4.0
- psr/log: ^1.0|^2.0|^3.0
Requires (Dev)
This package is auto-updated.
Last update: 2025-03-08 19:47:06 UTC
README
Simple work queue using Beanstalk
Installation
$ composer require visual-craft/work-queue
Usage
Create the queue manager
use Pheanstalk\Pheanstalk; use VisualCraft\WorkQueue\Logger; use VisualCraft\WorkQueue\QueueManager; $manager = new QueueManager( Pheanstalk::create('127.0.0.1', 11300), 'some_queue', new Logger(null) );
Setup queue processor and worker
use VisualCraft\WorkQueue\QueueProcessor; use VisualCraft\WorkQueue\Worker\JobMetadata; use VisualCraft\WorkQueue\Worker\WorkerInterface; class SomeWorker implements WorkerInterface { public function work($payload, JobMetadata $metadata): void { // Process job } } // Create the queue processor and provide it with the worker $processor = new QueueProcessor( $manager, new SomeWorker(), ); // Process the queue while($processor->process()) {}
Setup job adder and add the job
$adder = new JobAdder($manager); $id = $adder->add('some data');
License
MIT