溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

laravel總結(jié)——任務(wù)調(diào)度

發(fā)布時間:2020-08-01 21:46:16 來源:網(wǎng)絡(luò) 閱讀:1992 作者:指尖芳華 欄目:web開發(fā)

laravel 的任務(wù)調(diào)度,默認在 App\Console\Kernel 類 的schedule 中

三種調(diào)度 計劃方式:

  1. 閉包形式 : call
    protected function schedule(Schedule $schedule){
    $schedule->call(function () {
    //自定義邏輯處理
    })->daily(); //調(diào)度頻率
    }
  2. artisan 命令 或者 系統(tǒng)命令 :
    $schedule->command('emails:send --force')->daily();
  3. command 類 :command
    $schedule->command(Command::class, ['--force'])->daily();
    command 類 需要在 App\Console\Kernel 中注冊
    protected $commands = [
    \App\Console\Commands\Inspire::class,
    ];

$schedule->exec('node /home/forge/script.js')->daily(); //可以將命令發(fā)送到系統(tǒng)

調(diào)度頻率設(shè)置

->cron('* * * * *')     自定義調(diào)度任務(wù)
->everyMinute();     每分鐘執(zhí)行一次任務(wù)
->everyFiveMinutes();   每五分鐘執(zhí)行一次任務(wù)
->everyTenMinutes();    每十分鐘執(zhí)行一次任務(wù)
->everyThirtyMinutes();     每半小時執(zhí)行一次任務(wù)
->hourly();     每小時執(zhí)行一次任務(wù)
->hourlyAt(17);     每一個小時的第 17 分鐘運行一次
->daily();  每到午夜執(zhí)行一次任務(wù)
->dailyAt('13:00');     每天的 13:00 執(zhí)行一次任務(wù)
->twiceDaily(1, 13);    每天的 1:00 和 13:00 分別執(zhí)行一次任務(wù)
->weekly();     每周執(zhí)行一次任務(wù)
->monthly();    每月執(zhí)行一次任務(wù)
->monthlyOn(4, '15:00');    在每個月的第四天的 15:00 執(zhí)行一次任務(wù)
->quarterly();  每季度執(zhí)行一次任務(wù)
->yearly();     每年執(zhí)行一次任務(wù)
->timezone('America/New_York');     設(shè)置時區(qū)

額外限制條件

->weekdays();   限制任務(wù)在工作日
->sundays();    限制任務(wù)在星期日
->mondays();    限制任務(wù)在星期一
->tuesdays();   限制任務(wù)在星期二
->wednesdays();     限制任務(wù)在星期三
->thursdays();  限制任務(wù)在星期四
->fridays();    限制任務(wù)在星期五
->saturdays();  限制任務(wù)在星期六
->between($start, $end);    限制任務(wù)運行在開始到結(jié)束時間范圍內(nèi)
->unlessBetween($start,$end)
->when(Closure);    限制任務(wù)基于一個為真的驗證,傳遞一個閉包,返回真會繼續(xù)執(zhí)行
->skip(Closoure);  返回真,停止執(zhí)行

避免重復(fù)任務(wù)

->withoutOverlapping();

強制維護模式下也運行

->evenInMaintenanceMode();
 ->sendOutputTo($filePath);   //輸出任務(wù)到文件
 ->appendOutputTo($filePath);  //添加到文件
發(fā)送到郵件
$schedule->command('foo')
         ->daily()
         ->sendOutputTo($filePath)   //必須要這個
         ->emailOutputTo('foo@example.com');  

任務(wù)鉤子

->before(Clousoure function(){   });
->after(Clousoure function(){   });

ping

->pingBefore($url);
->thenPing($url);
需要擴展包支持
composer require guzzlehttp/guzzle

一次性啟動任務(wù): 常用于測試

php artisan schedule:run   //運行所有任務(wù)

定時調(diào)度

crontab -e
    * * * * * php  programPath/artisan schedule:run  >> /dev/null 2>&1

總結(jié):可在 command 類的 handle 方法中調(diào)用service 服務(wù)

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI