2010-04-18 13:58:43 +00:00
|
|
|
<?php
|
|
|
|
if(empty($argv[1])) {
|
|
|
|
die('Specify the name of a job to add. e.g, php queue.php PHP_Job');
|
|
|
|
}
|
|
|
|
|
2013-01-12 11:40:26 +00:00
|
|
|
require __DIR__ . '/init.php';
|
2010-04-18 13:58:43 +00:00
|
|
|
date_default_timezone_set('GMT');
|
|
|
|
Resque::setBackend('127.0.0.1:6379');
|
|
|
|
|
2010-04-19 00:35:50 +00:00
|
|
|
$args = array(
|
|
|
|
'time' => time(),
|
|
|
|
'array' => array(
|
|
|
|
'test' => 'test',
|
|
|
|
),
|
|
|
|
);
|
2010-04-18 14:12:35 +00:00
|
|
|
|
2013-03-12 10:18:37 +00:00
|
|
|
$jobId = Resque::enqueue($argv[1], $argv[2], $args, true);
|
2013-03-13 11:41:32 +00:00
|
|
|
echo "Queued job ".$jobId."\n\n";
|