30. 配置 Cron 调度器
2017-10-05 本文已影响11人
独步天堂
Laravel 提供了便利的方式来调度 Cron 任务,通过Artisan 命令 schedule:run ,调度便会在每分钟运行一次。
schedule:run 命令会检查定义在你 App\Console\Kernel 类中的调度任务,以此判断哪个任务该被运行。
如果你想对 Homestead 站点使用 schedule:run 命令,你需要在定义站点时将 schedule 选项设置为 true
sites:
- map: homestead.app
to: /home/vagrant/Code/Laravel/public
schedule: true
该站点的 Cron 任务会被定义在虚拟机的 /etc/cron.d 文件夹中。