使用PHP进行Resque调度

时间:2016-07-21 06:36:51

标签: php resque-scheduler

我正在使用PHP来实现调度程序。我的要求是在上午9:00到晚上9:00之间运行队列。在该时间段之外的队列中添加的作业不应该处理。

以下是我的代码:

<?php
include('autoload.php');
include('ResqueScheduler.php');
include('Resque.php');


Resque::setBackend('XXXXXXXXXXXXXXXXXXX');

$args = array('glid' => '1234');
$time = 10;

try{
  ResqueScheduler::enqueueAt($time, 'Test_Worker', $args);


}catch (Exception $e) {
  echo 'EXCEPTION';
  print_r($e);
}

0 个答案:

没有答案