laravel----------如何优化laravel框架

连坚白
2023-12-01

1.关闭debug (打开.env文件,把debug设置为false.)

2.缓存路由和配置(清除:php artisan config:clear  php artisan route:clear )

  php artisan config:cache  和  php artisan route:cache 缓存路由和配置,会在bootstrap/cache生成缓存文件(config.php和route.php)

3.Laravel优化命令(清除生成的缓存文件命令:php artisan clear-compiled)

  php artisan optimize --force  在生产环境中应该开启,以提升性能:会在bootstrap/cache生成缓存文件(services.php和packages.php)

4.composer优化

  composer dump-autoload --optimize

5.使用Laravel缓存

  使用Laravel的Cache方法缓存内容,有文件缓存,数据库缓存,redis缓存,使用redis也可以用predis组件,也可以多种缓存方式结合

6.使用CDN

7.使用PHP 7并开启OPcache

转载于:https://www.cnblogs.com/wamptao/p/6399991.html

 类似资料: