使用php7.0,Apache+mysql开发laravel程序,但是每次请求的时间很长,1秒多,扩展了opcache也没能解决,应该怎么办。
代码如下:(数据表中的数据20条)
$test = DB::table('cats')->select('id','price');
$a= $test->get();
dd($a);
这里 dd($test)的话,时间是380ms,我该怎么做,求指点
阿神2017-05-16 12:04:04
Turn off xDebug
Extension
config/app.php
中,关掉BarryvdhDebugbar
config/app.php
关闭无用的ServiceProvider
Executephp artisan route:cache
cache the route
If none of the above are solved, then consider whether there is a problem with the database connection.
滿天的星座2017-05-16 12:04:04
Database connection problem. If you are using localhost, try changing to 127.0.0.1