如何在 Laravel 中对自定义查询的结果进行分块
本文介绍了如何在 Laravel 中对自定义查询的结果进行分块的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我有一个自定义查询,它从旧系统中获取数据并将其映射到新系统中的模型.查询如下所示:
I have a custom query that grabs data from the old system and maps it to models in the new system. The query looks like this:
$companies = DB::connection('legacy')->select("...");
由于数据量很大,我想使用 Eloquent 的块功能(只是从他们的文档中复制的示例代码):
And since it's a lot of data, I'd like to use Eloquent's chunk feature (just sample code copied from their docs):
我该如何实施?
我的代码现在看起来像这样,导致没有响应:
My code now looks like this, which results in no response:
推荐答案
试试这个:
基本上复制了 Laravel 的分页器所做的事情,而没有额外的开销.
Basically duplicates what Laravel's Paginator does without the extra overhead.
这篇关于如何在 Laravel 中对自定义查询的结果进行分块的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!