Experimental queue plugin for CakePHP using queue-interop.
You can install this plugin into your CakePHP application using composer.
The recommended way to install composer packages is:
composer require josegonzalez/queue
Install the transport you wish to use. For a list of available transports, see this page. The example below is for pure-php redis:
composer require enqueue/redis predis/predis:^1
Ensure that the plugin is loaded in your src/Application.php
file, within the Application::bootstrap()
function:
$this->addPlugin('Queue');
The following configuration should be present in your app.php:
$config = [
'Queue' => [
'default' => [
// A DSN for your configured backend. No default
'url' => 'redis:'
// The queue that will be used for sending messages. default: default
'queue' => 'default',
// The name of a configured logger, default: debug
'logger' => 'debug',
// The name of an event listener class to associate with the worker
'listener' => 'App\Listener\WorkerListener',
]
]
];
Create a Job class:
<?php
// src/Job/ExampleJob.php
namespace App\Job;
use Cake\Log\LogTrait;
use Interop\Queue\Processor;
use Psr\Log\LogLevel;
use Queue\Queue\JobData;
class ExampleJob
{
use LogTrait;
public function execute(JobData $job)
{
$id = $job->getData('id');
$message = $job->getData('message');
$this->log(sprintf('%d %s', $id, $message), LogLevel::INFO);
return Processor::ACK;
}
}
The passed JobData object has the following methods:
getData($key = null, $default = null)
: Can return the entire passed dataset or a value based on aHash::get()
notation key.getMessage
: Returns the original message object.getParsedBody
: Returns the parsed message body.
A job may return any of the following values:
Processor::ACK
: Use this constant when the job is processed successfully. The message will be removed from the queue.Processor::REJECT
: Use this constant when the job could not be processed. The message will be removed from the queue.Processor::REQUEUE
: Use this constant when the message is not valid or could not be processed right now but we can try again later. The original message is removed from the queue but a copy is published to the queue again.
The job may also return a boolean or null value. These are mapped as follows:
null
:Processor::ACK
true
:Processor::ACK
false
:Processor::REJECT
Finally, the original message as well as the processed body are available via accessing the JobData
object.
Queue the jobs using the included Queue\Queue\Queue
class:
use Queue\Queue\Queue;
$callable = ['\App\Job\ExampleJob', 'execute'];
$arguments = ['id' => 7, 'message' => 'hi2u'];
$options = ['config' => 'default']''
Queue::push($callable, $arguments, $options);
Arguments:
$callable
: A callable that will be invoked. This callable must be valid within the context of your application. Job classes are prefered.$arguments
(optional): A json-serializable array of data that is to be made present for your job. It should be key-value pairs.$options
(optional): An array of optional data. This may contain aqueue
name or aconfig
key that matches a configured Queue backend.
Once a job is queued, you may run a worker via the included worker
shell:
bin/cake worker
This shell can take a few different options:
--config
(default: default): Name of a queue config to use--queue
(default: default): Name of queue to bind to--logger
(default: stdout): Name of a configured logger--max-iterations
(default: 0): Number of max iterations to run--max-runtime
(default: 0): Seconds for max runtime