mobile_update_sort.php 899 B

12345678910111213141516171819202122232425262728
  1. <?php
  2. use app\common\model\Mobile;
  3. use app\service\EsMobileService;
  4. use think\Db;
  5. use Workerman\Lib\Timer;
  6. use Workerman\Worker as WO;
  7. class MobileUpdateSort extends Com{
  8. public static function run(){
  9. $work=self::newWorker();
  10. $work->onWorkerStart=function (WO $worker){
  11. Timer::add(3,function ()use ($worker){
  12. Db::name('mobile')->where('type', Mobile::BEAUTI)->field(['id','sort'])->chunk(1000,function ($ids){
  13. foreach ($ids?:[] as $mobile){
  14. try {
  15. EsMobileService::updateById($mobile['id'],['sort'=>$mobile['sort']]);
  16. }catch (\Exception $e){
  17. //self::logError($e);
  18. }
  19. sleep(1);
  20. }
  21. });
  22. });
  23. };
  24. }
  25. }
  26. MobileUpdateSort::run();