码迷,mamicode.com
首页 > 其他好文 > 详细

laravel 使用with查询数据和 chunk分块的使用

时间:2019-11-06 11:41:17      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:过滤   limit   one   数据   chunk   sel   condition   conf   ber   

chunk分块的使用

使用with查询数据

//贪婪模式闭包过滤
        $orders = MemberLevelOrder::with(['hasOneOrderGoods'=>function($query){
            return $query->where('goods_id',config('custom.goods_id'));
        }])->where($condition)->limit(2000)->chunk(500, function ($coll) {
            self::setGrowing($coll);
        });

laravel 使用with查询数据和 chunk分块的使用

标签:过滤   limit   one   数据   chunk   sel   condition   conf   ber   

原文地址:https://www.cnblogs.com/photo520/p/11804132.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!