12345678910111213141516171819202122232425 |
- <?php
- namespace app\common\command;
- use app\common\model\Mobile;
- use app\service\EsMobileService;
- use think\console\Command;
- use think\console\Input;
- use think\console\Output;
- class EsImportCommand extends Command{
- protected function configure()
- {
- $this->setName('es:import')->setDescription('test');
- }
- protected function execute(Input $input, Output $output)
- {
- $count=0;
- Mobile::where('type',1)->where('id','>',135950454)->chunk(10000,function ($mobiles)use (&$count){
- EsMobileService::addMobiles($mobiles);
- $count+=count($mobiles);
- $this->output->info("count:{$count}");
- });
- }
- }
|