我正在尝试提高查询速度,目前大约需要 15秒才能返回所有数据。我有一个 Ionic 3 应用,该应用正在发送发布请求以获取所有库存,而我的 Laravel 5.4 服务器正在处理该请求。
这是我的查询:
$input = file_get_contents( "php://input" );
$request = json_decode( $input );
$dealer_id = $request->dealer_id;
$tmp = Inventory::where(
'dealer_id', '=', $dealer_id
)->where(
'inventories.is_sold', '=', 0
)->where(
'is_active','=', 1
);
// dd($tmp);
$data = collect();
$pmt = $tmp->get();
logger( sprintf('# of rows returned: %s', $pmt->count() ) );
$pmt->each( function($row) use(&$data) {
logger( sprintf('Row : %s', $row->toJson() ));
$data->push( array(
'stock_number' => $row->stock_number,
'vehicle_id' => $row->vehicle_id,
'year' => $row->vehicle()->first()->year,
'make' => $row->vehicle()->first()->make,
'model' => $row->vehicle()->first()->model,
// 'trim' => $row->vehicle()->first()->trim,
'vin' => $row->vehicle()->first()->vin,
'status' => $row->vehicle_status,
'purchase_price' => $row->purchase_price,
'cost' => $row->cost,
// 'retail_price' => $row->retail_price,
'search_meta' => $row->search_meta,
// 'interior_color' => $row->vehicle()->first()->interior_color,
// 'exterior_color' => $row->vehicle()->first()->exterior_color,
'firstImg' => $row->getFirstImage(),
'images' => Vimage::select('vehicle_id','name'
)->where(
'dealer_id', '=', $row->dealer_id
)->where(
'vehicle_id', '=', $row->vehicle_id
)->get()
));
});
$statusKey = \App\lt_vehicle_status::where(
'dealer_id', '=', $dealer_id
)->where(
'is_active','=', 1
)->get();
$response = [
"status" => "Success",
"code" => "MAC01",
"reason" => "MAC - Inventory Gathered Successfully",
"data" => $data,
"status_keys" => $statusKey
];
echo json_encode( $response );
返回的数据:
https://i.imgur.com/zxWSNo5.png
最大的问题之一是获取所有图像网址以及所有载具。
感谢任何可以帮助我提高速度和效率的人。
答案 0 :(得分:2)
为什么不将所有内容都放在一个查询中?仅使用2
和"92xx"
所需的列。如果您需要"9.xx"
,只需添加joins
就可以了。另外,如果没有索引,请添加索引。
答案 1 :(得分:1)
您查询太多,无法获取车辆和图片。在车辆的情况下,您可以通过预先加载以下关系将每个Inventory
记录的数量减少为1:
$tmp = Inventory::with('vehicle')
where(
'dealer_id', '=', $dealer_id
)->where(
'inventories.is_sold', '=', 0
)->where(
'is_active','=', 1
);
如果图像是Inventory
上的一个关系,则可以将其添加到with
方法调用中;否则,可以分别收集图像搜索参数,然后执行一次选择