最近再用Laravel做计划任务,写了一个计划任务设置按每分钟可以正常执行,然而改成小时却不能按照预期执行。弄得我一脸懵逼。
protected function schedule(Schedule $schedule)
{
$schedule->call(function () {
//DB::table('cms_articles')->delete();
DB::update('update cms_articles set hit=hit + FLOOR(1 + (RAND() * 10)) where hit>1000');
DB::update('update cms_articles set hit=hit + FLOOR(1 + (RAND() * 20)) where hit<1000');
})->hourly();
}