Home > PHP Framework > Laravel > Learn 10 tips to optimize PHP program Laravel 5 framework in one minute

Learn 10 tips to optimize PHP program Laravel 5 framework in one minute

慕斯
Release: 2021-06-18 09:23:39
forward
2023 people have browsed it

This article introduces you to learn 10 techniques in one minute to optimize the Laravel 5 framework of PHP programs. It has certain reference value. Friends in need can refer to it. I hope it will be helpful to everyone.

Learn 10 tips to optimize PHP program Laravel 5 framework in one minutePerformance has always been a point of criticism for the Laravel framework, so tuning Laravel programs is a must-learn skill.
Here is a simple list:

Configuration information cache artisan config:cache

               路由缓存 artisan route:cache
               类映射加载优化 artisan optimize
               自动加载优化 composer dumpautoload
               使用 Memcached 来存储会话 config/session.PHP
               使用专业缓存驱动器 config/cache.php
               数据库请求优化
               数据集书写缓存逻辑
               使用即时编译器(JIT),如:HHVM、OpCache
               前端资源合并 Elixir
1. 配置信息缓存
Use the following Artisan built-in command to merge all the configuration information in the config folder into one file to reduce the number of files loaded during runtime:
php artisan config:cache
The above command will generate the file bootstrap/cache/config.php. You can use the following command to cancel the configuration information cache:
php artisan config:clear
What this command does is delete the bootstrap/cache/config.php file.
Note: The configuration information cache will not be automatically reloaded with updates. Therefore, it is recommended to turn off the configuration information cache during development. It is generally used in production environments and can be used with the Envoy task runner.
2. Route cache
Route cache can effectively improve the registration efficiency of the router, and the effect is more obvious in large applications. Use the following command:
##

php artisan route:cache
Copy after login

The above command will generate the bootstrap/cache/routes.php file , it should be noted that the route cache does not support routing anonymous function writing logic.
You can use the following command to clear the routing cache:

php artisan route:clear
Copy after login

此命令做的事情就是把 bootstrap/cache/routes.php 文件删除。
注意:路由缓存不会随着更新而自动重载,所以,开发时候建议关闭路由缓存,一般在生产环境中使用,可以配合 Envoy 任务运行器 一起使用。
3. 类映射加载优化
optimize 命令把常用加载的类合并到一个文件里,通过减少文件的加载,来提高运行效率:

php artisan optimize --force
Copy after login

会生成 bootstrap/cache/compiled.php 和 bootstrap/cache/services.json 两个文件。
你可以可以通过修改 config/compile.php 文件来添加要合并的类。
在 production 环境中,参数 --force 不需要指定,文件就会自动生成。
要清除类映射加载优化,请运行以下命令:

php artisan clear-compiled
Copy after login

此命令会删除上面 optimize 生成的两个文件。
注意:此命令要运行在 php artisan config:cache 后,因为 optimize 命令是根据配置信息(如:config/app.php 文件的 providers 数组)来生成文件的。
4. 自动加载优化
此命令不止针对于 Laravel 程序,适用于所有使用 composer 来构建的程序。此命令会把 PSR-0 和 PSR-4 转换为一个类映射表,来提高类的加载速度。

composer dumpautoload -o
Copy after login

注意:php artisan optimize --force 命令里已经做了这个操作。
5. 使用 Memcached 来存储会话
每一个 Laravel 的请求,都会产生会话,修改会话的存储方式能有效提高程序效率,会话的配置信息是 config/session.php,建议修改为 Memcached 或者 Redis 等专业的缓存软件:

'driver' => 'memcached',
Copy after login

6. 使用专业缓存驱动器
「缓存」是提高应用程序运行效率的法宝之一,默认缓存驱动是 file 文件缓存,建议切换到专业的缓存系统,如 redis 或者 Memcached,不建议使用数据库缓存。

'default' => 'redis',
Copy after login

7. 数据库请求优化
数据关联模型读取时使用 延迟预加载 和 预加载 ;
使用 Laravel Debugbar 或者 Clockwork 留意每一个页面的总数据库请求数量;
这里的篇幅只写到与 Laravel 相关的,其他关于数据优化的内容,请自行查阅其他资料。
8. 为数据集书写缓存逻辑
合理的使用 Laravel 提供的缓存层操作,把从数据库里面拿出来的数据集合进行缓存,减少数据库的压力,运行在内存上的专业缓存软件对数据的读取也远远快于数据库。

$posts = Cache::remember('index.posts', $minutes = 30, function()
{
    return Post::with('comments', 'tags', 'author', 'seo')->whereHidden(0)->get();
});
remember 甚至连数据关联模型也都一并缓存了,多么方便呀。
Copy after login

9. 使用即时编译器
HHVM 和 OpCache 都能轻轻松松的让你的应用程序在不用做任何修改的情况下,直接提高 50% 或者更高的性能,PHPhub 之前做个一个实验,具体请见:使用 OpCache 提升 PHP 5.5+ 程序性能。
10. 前端资源合并
作为优化的标准,一个页面只应该加载一个 CSS 和 一个 js 文件,并且文件要能方便走 CDN,需要文件名随着修改而变化

相关推荐:最新的五个Laravel视频教程


The above is the detailed content of Learn 10 tips to optimize PHP program Laravel 5 framework in one minute. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
php
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template