跟进此问题:How to chunk results from a custom query in Laravel
我试试
DB::connection('mgnt')->select($query)->chunk(200, function($orders) {
foreach ($orders as $order) {
//a bunch of code...
}
});
但是我收到以下错误:
FatalErrorException in MigrationController.php line 98:
Call to a member function chunk() on array
如果没有合适的Eloquent ORM模型,分块是否可行? 我尝试chunk,因为我得到一个空白页面(如果查询返回太多结果,则无法在任何日志中找到任何错误)。
我认为现在最多可以查询50,000个结果。这可能是由于Laravel的一些限制或限制吗?
答案 0 :(得分:3)
因为查询只返回一个对象数组,所以你可以简单地使用PHP的array_chunk()
:
$result = DB::connection('mgnt')->select($query);
foreach(array_chunk($result, 200) as $orders){
foreach($orders as $order){
// a bunch of code...
}
}
以下是雄辩模型中的chunk()
:
$results = $this->forPage($page = 1, $count)->get();
while (count($results) > 0)
{
// On each chunk result set, we will pass them to the callback and then let the
// developer take care of everything within the callback, which allows us to
// keep the memory low for spinning through large result sets for working.
call_user_func($callback, $results);
$page++;
$results = $this->forPage($page, $count)->get();
}
你可以尝试做类似的事情(虽然我认为应该可以一次性运行你的查询,但我无法帮助你......)
LIMIT 200