php-resque/demo/queue.php

19 lines
382 B
PHP
Raw Normal View History

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');
}
require __DIR__ . '/init.php';
2010-04-18 13:58:43 +00:00
date_default_timezone_set('GMT');
Resque::setBackend('127.0.0.1:6379');
$args = array(
'time' => time(),
'array' => array(
'test' => 'test',
),
);
2010-04-18 14:12:35 +00:00
2010-04-18 13:58:43 +00:00
$jobId = Resque::enqueue('default', $argv[1], $args, true);
echo "Queued job ".$jobId."\n\n";
?>