gpt4 book ai didi

php - 如何优化数据加载速度

转载 作者:太空宇宙 更新时间:2023-11-03 10:31:47 24 4
gpt4 key购买 nike

在我看来,我有一个 for-each。假设它确实有 5000 个数据。所以加载页面需要一些时间。因为那些数据被加载到 View 中的数据表中。有没有办法快速优化和加载它们??

在 Blade View 中

@foreach($items as $item)
<tr>
<td>{{$item->name}}</td>
...
...
...
</tr>
@endforeach

在 Controller 中

$items = Items::where('active',1)->get();

最佳答案

您可以遵循 3 种方式 (IMO)

  1. 缓存
  2. 使用分页
  3. 不要使用 Eloquent。仅使用 DB::select 会快得多,因为 Eloquent 倾向于使用大量类或对象。

关于php - 如何优化数据加载速度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56746310/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com