command('download:download') ->everyMinute() ->withoutOverlapping()->appendOutputTo($path); $schedule->command('post:yesterday') ->dailyAt('00:10') ->withoutOverlapping()->appendOutputTo($path); $schedule->command('post:statistics') ->dailyAt('00:20') ->withoutOverlapping()->appendOutputTo($path); //统计前一天用户行为累加 $schedule->command('member:statistics') ->dailyAt('00:05') ->withoutOverlapping()->appendOutputTo($path); //统计前一天最佳内容 $schedule->command('post:yesterday-great') ->dailyAt('00:30') ->withoutOverlapping()->appendOutputTo($path); //内容生成U米 $schedule->command('post:create_bean') ->everyFiveMinutes() ->withoutOverlapping()->appendOutputTo($path); //内容收取U米 $schedule->command('post:collect_bean') ->everyFiveMinutes() ->withoutOverlapping()->appendOutputTo($path); //更新话题使用数 $schedule->command('post:topic_use_count') ->everyFiveMinutes() ->withoutOverlapping()->appendOutputTo($path); } }