EsImportCommand.php 675 B

12345678910111213141516171819202122232425
  1. <?php
  2. namespace app\common\command;
  3. use app\common\model\Mobile;
  4. use app\service\EsMobileService;
  5. use think\console\Command;
  6. use think\console\Input;
  7. use think\console\Output;
  8. class EsImportCommand extends Command{
  9. protected function configure()
  10. {
  11. $this->setName('es:import')->setDescription('test');
  12. }
  13. protected function execute(Input $input, Output $output)
  14. {
  15. $count=0;
  16. Mobile::where('type',1)->where('id','>',135950454)->chunk(10000,function ($mobiles)use (&$count){
  17. EsMobileService::addMobiles($mobiles);
  18. $count+=count($mobiles);
  19. $this->output->info("count:{$count}");
  20. });
  21. }
  22. }