响应时间过长-Laravel Api

时间:2019-08-23 12:42:48

标签: php laravel rest response

我正在构建laravel API,并且正在测试来自邮递员的请求。 简单请求花费的时间太长,无法获得响应(大约200到300毫秒)。我在Java中具有相同的API,该API最多可以在30毫秒内给出相同的响应。有人知道会发生什么吗?

响应时间:

response time image

控制器:

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use App\Setor;

class SetorController extends Controller
{
    public function show(){  
        return Setor::all();
    }
}

1 个答案:

答案 0 :(得分:0)

可能是因为数据库查询需要很多时间。 尝试将方法更改为简单的返回值:

public function show(){  
    return 'ok';
}

然后测量请求时间。减少了吗?