12345678910111213141516171819202122232425262728 |
- <?php
- use app\common\model\Mobile;
- use app\service\EsMobileService;
- use think\Db;
- use Workerman\Lib\Timer;
- use Workerman\Worker as WO;
- class MobileUpdateSort extends Com{
- public static function run(){
- $work=self::newWorker();
- $work->onWorkerStart=function (WO $worker){
- Timer::add(3,function ()use ($worker){
- Db::name('mobile')->where('type', Mobile::BEAUTI)->field(['id','sort'])->chunk(1000,function ($ids){
- foreach ($ids?:[] as $mobile){
- try {
- EsMobileService::updateById($mobile['id'],['sort'=>$mobile['sort']]);
- }catch (\Exception $e){
- //self::logError($e);
- }
- sleep(1);
- }
- });
- });
- };
- }
- }
- MobileUpdateSort::run();
|