PHP code example of chrisboulton / php-resque

1. Go to this page and download the library: Download chrisboulton/php-resque library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

chrisboulton / php-resque example snippets


// Required if redis is located elsewhere
Resque::setBackend('localhost:6379');

$args = array(
        'name' => 'Chris'
        );
Resque::enqueue('default', 'My_Job', $args);

class My_Job
{
    public function perform()
    {
        // Work work work
        echo $this->args['name'];
    }
}

class My_Job
{
    public function setUp()
    {
        // ... Set up environment for this job
    }

    public function perform()
    {
        // .. Run job
    }

    public function tearDown()
    {
        // ... Remove environment for this job
    }
}

// Removes job class 'My_Job' of queue 'default'
Resque::dequeue('default', ['My_Job']);

// Removes job class 'My_Job' with Job ID '087df5819a790ac666c9608e2234b21e' of queue 'default'
Resque::dequeue('default', ['My_Job' => '087df5819a790ac666c9608e2234b21e']);

// Removes job class 'My_Job' with arguments of queue 'default'
Resque::dequeue('default', ['My_Job' => array('foo' => 1, 'bar' => 2)]);

// Removes multiple jobs
Resque::dequeue('default', ['My_Job', 'My_Job2']);

// Removes all jobs of queue 'default'
Resque::dequeue('default');

$token = Resque::enqueue('default', 'My_Job', $args, true);
echo $token;

$status = new Resque_Job_Status($token);
echo $status->get(); // Outputs the status
sh
sh
$ QUEUE=file_serve php bin/resque
sh
$ QUEUE=file_serve APP_INCLUDE=../application/init.php php bin/resque