使用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
확장 프로그램을 끄세요xDebug
扩展
config/app.php
中,关掉BarryvdhDebugbar
config/app.php
关闭无用的ServiceProvider
执行php artisan route:cache
config/app.php
에서 BarryvdhDebugbar
를 끄세요
🎜🎜config/app.php
쓸데없는 ServiceProvider
를 닫습니다🎜🎜
🎜🎜php artisan Route:cache
를 실행하여 경로를 캐시하세요🎜🎜
🎜
🎜위 사항 중 어느 것도 해결되지 않으면 데이터베이스 연결에 문제가 있는지 고려해보세요. 🎜