流程:php
php artisan make:event UserLogin
LoginController.phplaravel
/** * The user has been authenticated. * * @param \Illuminate\Http\Request $request * @param mixed $user * @return mixed */ protected function authenticated(Request $request, $user) { event(new UserLogin($user)); }
php artisan make:listener EmailAdminUserLogin --event=UserLogin
//應用程序的事件監聽器映射 class EventServiceProvider extends ServiceProvider { /** * The event listener mappings for the application. * * @var array */ protected $listen = [ 'App\Events\UserLogin' => [ 'App\Listeners\UserLogin\EmailAdminUserLogin', 'App\Listeners\UserLogin\TraceUser', 'App\Listeners\UserLogin\AddUserLoginCounter', ], 'App\Events\UserLogout' => [ 'App\Listeners\UserLogout\EmailAdminUserLogout', 'App\Listeners\UserLogout\TraceUser', ], ]; /** * Register any events for your application. * * @return void */ public function boot() { parent::boot(); Event::listen('event.*', function ($eventName, array $data) { // }); } }
生成事件 & 監聽器:php artisan event:generate
數據庫
protected function schedule(Schedule $schedule) { $schedule->call(function (){ \Log::info('我是call方法實現的定時任務'); })->everyMinute(); }
執行:php artisan schedule:run
編程
生成命令:php artisan make:command SayHello
app
<?php namespace App\Console\Commands; use Illuminate\Console\Command; class SayHello extends Command { /** * The name and signature of the console command. * * @var string */ protected $signature = 'message:hi'; /** * The console command description. * * @var string */ protected $description = 'Command description'; /** * Create a new command instance. * * @return void */ public function __construct() { parent::__construct(); } /** * Execute the console command. * * @return mixed */ public function handle() { //書寫處理邏輯 \Log::info('早上好,用戶'); } }
Kernel.phpide
protected function schedule(Schedule $schedule) { $schedule->command('message:hi') ->everyMinute(); }
執行:php artisan schedule:run
函數
QUEUE_DRIVER=database
this
如:數據庫驅動spa
php artisan queue:table php artisan migrate
生成任務類:code
php artisan make:job SendReminderEmail
class SendReminderEmail implements ShouldQueue { use Dispatchable, InteractsWithQueue, Queueable, SerializesModels; public $user; /** * Create a new job instance. * * @param User $user */ public function __construct(User $user) { $this->user = $user; } /** * Execute the job. * * @return void */ public function handle() { \Log::info('send reminder email to user' . $this->user->email); } }
你寫好任務類後,就能經過 dispatch
輔助函數來分發它了。惟一須要傳遞給 dispatch
的參數是這個任務類的實例:
利用模型工廠生成30個用戶:
public function store(Request $request) { $users = User::where('id','>',24)->get(); foreach ($users as $user){ $this->dispatch(new SendReminderEmail($user)); } return 'Done'; }
Route::get('/job', 'UserController@store');
數據庫表jobs
生成5個隊列任務:
php artisan queue:work
Tips:要注意,一旦 queue:work
命令開始,它將一直運行,直到你手動中止或者你關閉控制檯
處理單一任務:你能夠使用 --once
選項來指定僅對隊列中的單一任務進行處理
php artisan queue:work --once
拓展:使用 Beanstalkd
管理隊列,Supervisor
則是用來監聽隊列的任務,並在隊列存在任務的狀況下自動幫咱們去執行,免去手動敲 php artisan
的命令,保證本身的隊列能夠正確執行
謝謝你看到這裏,有什麼問題能夠在評論區留言交流,謝謝!
參考文檔:Laravel5.5 的事件系統
參考視頻01:Coding 10編程原動力 - Laravel5.5 事件監聽
參考視頻02:Coding 10編程原動力 - Laravel5.5 定時任務
參考視頻03:輕鬆使用 Laravel 隊列