使用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
關掉xDebug
擴充
config/app.php
中,关掉BarryvdhDebugbar
config/app.php
关闭无用的ServiceProvider
執行php artisan route:cache
將路由緩存起來
以上都沒解決,那考慮資料庫連線是否有問題。