提高查询速度ionic/laravel post请求

eblbsuwk  于 2021-06-23  发布在  Mysql
关注(0)|答案(2)|浏览(299)

我正在努力提高我的查询速度,目前返回所有数据大约需要15秒。我有一个离子3应用程序,它正在发送一个post请求来获取所有的库存,我的Laravel5.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
最大的问题之一是获取所有的图像URL以及所有的车辆。
感谢所有能帮助我提高速度和效率的人。

2fjabf4q

2fjabf4q1#

为什么不把所有的东西都放到一个查询中呢?使用 joins 以及 select 只有所需的列。如果你需要 array ,您只需添加 toArray() 就这样。另外,如果没有索引,可以添加索引。

zpf6vheq

zpf6vheq2#

您的查询太多,无法获取车辆和图像。在vehicles的情况下,您可以将它们分别减少到1 Inventory 通过加载关系进行记录:

$tmp = Inventory::with('vehicle')
        where(
            'dealer_id', '=', $dealer_id
        )->where(
            'inventories.is_sold', '=', 0
        )->where(
            'is_active','=', 1
    );

如果图像是一段关系 Inventory 您可以将其添加到 with 方法调用,如果没有,可以单独收集图像搜索参数,然后执行单个选择

相关问题