Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 40 additions & 16 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,46 @@ Because the PHP port is almost a direct API copy of the Ruby version, it is also
compatible with the web interface of the Ruby version, which provides the
ability to view and manage delayed jobs.

## Requirements ##

* PHP 5.3+
* Redis 2.2+
* PHP-Resque 1.2+
* Optional but Recommended: Composer

## Getting Started ##

The easiest way to work with php-resque-scheduler is when it's installed as a
Composer package inside your project. Composer isn't strictly
required, but makes life a lot easier.

If you're not familiar with Composer, please see <http://getcomposer.org/>.

1. Add php-resque-scheduler to your application's composer.json.

{
...
"require": {
"chrisboulton/php-resque-scheduler": "dev-master",
"php": ">=5.3.0"
},
...
}

2. Run `composer install`.

3. If you haven't already, add the Composer autoload to your project's
initialization file. (example)

require 'vendor/autoload.php';

## Delayed Jobs

To quote the documentation for the Ruby resque-scheduler:

> Delayed jobs are one-off jobs that you want to be put into a queue at some
point in the future. The classic example is sending an email:

require 'Resque/Resque.php';
require 'ResqueScheduler/ResqueScheduler.php';

$in = 3600;
$args = array('id' => $user->id);
ResqueScheduler::enqueueIn($in, 'email', 'SendFollowUpEmail', $args);
Expand All @@ -39,9 +69,6 @@ Instead of passing a relative time in seconds, you can also supply a timestamp
as either a DateTime object or integer containing a UNIX timestamp to the
`enqueueAt` method:

require 'Resque/Resque.php';
require 'ResqueScheduler/ResqueScheduler.php';

$time = 1332067214;
ResqueScheduler::enqueueAt($time, 'email', 'SendFollowUpEmail', $args);

Expand All @@ -61,9 +88,9 @@ worker is responsible for pulling items off the schedule/delayed queue and addin
them to the queue for resque. This means that for delayed or scheduled jobs to be
executed, the worker needs to be running.

A basic "up-and-running" resque-scheduler.php file is included that sets up a
running worker environment is included in the root directory. It accepts many
of the same environment variables as php-resque:
A basic "up-and-running" resque-scheduler file that sets up a running worker
environment is included in the bin/ directory. It accepts many of the same
environment variables as php-resque:

* `REDIS_BACKEND` - Redis server to connect to
* `LOGGING` - Enable logging to STDOUT
Expand All @@ -74,18 +101,15 @@ of the same environment variables as php-resque:
* `PIDFILE` - Write the PID of the worker out to this file

The resque-scheduler worker requires resque to function. The demo
resque-scheduler.php worker allows you to supply a `RESQUE_PHP` environment
variable with the path to Resque.php. If not supplied and resque is not already
loaded, resque-scheduler will attempt to load it from your include path
(`require_once 'Resque/Resque.php';'`)
resque-scheduler worker uses the Composer autoloader to load Resque.php.

It's easy to start the resque-scheduler worker using resque-scheduler.php:
$ RESQUE_PHP=../resque/lib/Resque/Resque.php php resque-scheduler.php
It's easy to start the resque-scheduler worker using the included demo:
$ bin/resque-scheduler

## Event/Hook System

php-resque-scheduler uses the same event system used by php-resque and exposes
the following events.
the following additional events:

### afterSchedule

Expand Down
32 changes: 21 additions & 11 deletions resque-scheduler.php → bin/resque-scheduler
Original file line number Diff line number Diff line change
@@ -1,18 +1,28 @@
#!/usr/bin/env php
<?php

// Look for an environment variable with
$RESQUE_PHP = getenv('RESQUE_PHP');
if (!empty($RESQUE_PHP)) {
require_once $RESQUE_PHP;
}
// Otherwise, if we have no Resque then assume it is in the include path
else if (!class_exists('Resque')) {
require_once 'Resque/Resque.php';
// Find and initialize Composer
$files = array(
__DIR__ . '/../../vendor/autoload.php',
__DIR__ . '/../../../autoload.php',
__DIR__ . '/../../../../autoload.php',
__DIR__ . '/../vendor/autoload.php',
);

foreach ($files as $file) {
if (file_exists($file)) {
require_once $file;
break;
}
}

// Load resque-scheduler
require_once dirname(__FILE__) . '/lib/ResqueScheduler.php';
require_once dirname(__FILE__) . '/lib/ResqueScheduler/Worker.php';
if (!class_exists('Composer\Autoload\ClassLoader', false)) {
die(
'You need to set up the project dependencies using the following commands:' . PHP_EOL .
'curl -s http://getcomposer.org/installer | php' . PHP_EOL .
'php composer.phar install' . PHP_EOL
);
}

$REDIS_BACKEND = getenv('REDIS_BACKEND');
if(!empty($REDIS_BACKEND)) {
Expand Down