mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 16:25:14 +00:00
19 lines
381 B
PHP
19 lines
381 B
PHP
|
<?php
|
||
|
if(empty($argv[1])) {
|
||
|
die('Specify the name of a job to add. e.g, php queue.php PHP_Job');
|
||
|
}
|
||
|
|
||
|
require '../lib/Resque.php';
|
||
|
date_default_timezone_set('GMT');
|
||
|
Resque::setBackend('127.0.0.1:6379');
|
||
|
|
||
|
$class = new stdClass;
|
||
|
$class->test = 'test';
|
||
|
|
||
|
$args = array(
|
||
|
time(),
|
||
|
$class
|
||
|
);
|
||
|
$jobId = Resque::enqueue('default', $argv[1], $args, true);
|
||
|
echo "Queued job ".$jobId."\n\n";
|
||
|
?>
|