par*_*oid 3 php laravel laravel-5 laravel-queue laravel-scheduler
我有一个这样的时间表:
<?php
namespace App\Console;
use Illuminate\Support\Facades\Artisan;
use Illuminate\Console\Scheduling\Schedule;
protected function schedule(Schedule $schedule)
{
Artisan::call('queue:work');
}
Run Code Online (Sandbox Code Playgroud)
我在我的 cronjob 上添加了这个:
* * * * * cd /var/www/html/my_script_address && php artisan schedule:run
它是正确的代码吗?我在问,因为每一分钟都在奔跑Artisan::call('queue:work')。
这是最好的方法吗?