1

我正在使用 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 秒运行一次呢?

4

2 回答 2

4

我用这段代码解决了它:

public function handle()
{
    $count = 0;
    while ($count < 59) {
        $startTime =  Carbon::now();

        $this->travelsRequestsDriversRepository->beFreeRequestAfterTime();

        $endTime = Carbon::now();
        $totalDuration = $endTime->diffInSeconds($startTime);
        if($totalDuration > 0) {
            $count +=  $totalDuration;
        }
        else {
            $count++;
        }
        sleep(1);
    }


}

并在 cron 表中添加此命令。

* * * * * /usr/local/php56/bin/php56 /home/hamshahr/domains/hamshahrapp.com/project/artisan taxis:beFreeTaxis 1>> /dev/null 2>&1
于 2018-02-16T10:32:20.383 回答
-2

它不像 Alexey Mezenin 建议的那样工作,但他让我知道在哪里测试一些解决方案。

您可以添加带有计时器的循环,而不是

protected function schedule(Schedule $schedule)

但直接进入命令/事件或其他您想要循环的内容。

例如,我正在运行一个命令,所以在我添加的命令中:

public function handle()
{
        \App\Investment::calculate();
        sleep(30);
        \App\Investment::calculate();
}

现在我的命令每 30 秒运行一次。

于 2016-04-21T20:13:43.287 回答