我正在使用 Laravel 计划来运行 cron 作业。
在我的 crontab 中,我添加了(使用正确的项目路径):
* * * * * php /path/to/artisan schedule:run >> /dev/null 2>&1
现在我的 App\Console\Kernel.php 看起来像:
protected function schedule(Schedule $schedule)
{
$schedule->command('investments:calculate_interests')->everyMinute();
$schedule->call('\App\Http\Controllers\UsersController@testEvent')->everyMinute();
}
像这样使用它,我每分钟都能成功运行作业。但是我如何将其更改为每 10 或 20 或 30 秒运行一次呢?