使用 Eloquent 处理数据太慢了,有没有好的方案
场景
单表需要查询特定条件下的 10 万条左右的数据
模型查询语句如下:
\App\Models\ServiceBiddings::whereIn('service_id', $ids)->get()->toArray();
查询出来的数据有 89236 条,eloquent 的处理时间大概为 10s,
sql 的执行时间大概为 370ms
DB 查询语句如下:
DB::table('service_biddings')->whereIn('service_id', $ids)->get()->toArray();
处理时间为 2s 左右
如果使用 DB 查询的话速度没什么问题,但是有什么方案可以提高 eloquent 的处理速度呢
推荐文章: