Performance optimization for Laravel-permission project
This article mainly introduces the performance optimization of the Laravel-permission project, which has certain reference value. Now I share it with you. Friends in need can refer to it
I recently studied and analyzed the performance of projects created on SWIS. Surprisingly, one of the most performance-consuming methods is caused by the excellent spatie/laravel-permission
package.
After reviewing more information and research, I discovered a performance issue that may be significantly improved. Now that the solution is clearly stated, it's easy to code improvements and submit pull requests.
Now that this solution has been merged and released, here is an analysis of this performance problem and how to avoid such problems in your own projects.
TL;DR: Jump to the conclusion part.
Performance bottleneck
If we look at it abstractly spatie/laravel-permission
It mainly does two things Thing:
Keep a list of permissions belonging to a model.
Check whether a model has permissions.
The first point is that it is a bit far-fetched to say that it is a performance bottleneck. The permission data here is stored in the database and will be read when needed. This process is a bit slow but is only performed once. The results will be cached and can be used directly for subsequent requests.
The second point is indeed a bottleneck from the perspective of performance bottleneck. This bottleneck depends on the nature of the permissions and the size of the project, since permissions will be checked frequently. Any sluggishness during this check will become a performance bottleneck for the entire project.
Filter Collection Class
The method of filtering permission collections is considered to be the cause of low performance. It does the following:
$permission = $permissions ->where('id', $id) ->where('guard_name', $guardName) ->first();
After modification:
$permission = $permissions ->filter(function ($permission) use ($id, $guardName) { return $permission->id === $id && $permission->guard_name === $guardName; }) ->first();
These two code snippets achieve the same thing, but the second one is faster.
Performance Test
There are about 150 different permissions in the app I'm developing. In a normal request, there are about 50 permissions that need to be checked using the hasPermissionTo
method. Of course, some pages may need to check about 200 permissions.
The following are some settings used for performance testing.
$users = factory(User::class, 150)->make(); $searchForTheseUsers = $users->shuffle()->take(50); # 方法 1: where foreach($searchForTheseUsers as $user) { $result = $users->where('id', '=', $user->id)->first(); } # 方法 2: 过滤,传递一个模型作为回调 foreach($searchForTheseUsers as $searchUser) { $result = $users->filter(function($user) use ($searchUser) { return $user->id === $searchUser->id; })->first(); } # 方法 3: 过滤,传递属性作为回调 foreach($searchForTheseUsers as $user) { $searchId = $user->id; $result = $users->filter(function($user) use ($searchId) { return $user->id === $searchId; })->first(); }
The above three methods will be used to test filtering 1 attribute, 2 attributes, and 3 attributes. Therefore, using method 1 to filter three attributes will look like this:
foreach($searchForTheseUsers as $user) { $result = $users ->where('id', '=', $user->id) ->where('firstname', '=', $user->firstname) ->where('lastname', '=', $user->lastname)->first(); }
Result
Method#1 | Method#2 | Method#3 | |
---|---|---|---|
1 attribute | 0.190 | 0.139 (-27%) | 0.072 ( -62%) |
2 attributes | 0.499 | 0.372 (-25%) | 0.196 (-61%) |
##3 attributes | 0.4880.603 (25%) | 0.198 (-59%) |
Collection::filter() instead of
Collection::where() can improve performance by 60%.
Using Swoole's coroutine database query in Laravel 5.6
The above is the detailed content of Performance optimization for Laravel-permission project. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics



JWT is an open standard based on JSON, used to securely transmit information between parties, mainly for identity authentication and information exchange. 1. JWT consists of three parts: Header, Payload and Signature. 2. The working principle of JWT includes three steps: generating JWT, verifying JWT and parsing Payload. 3. When using JWT for authentication in PHP, JWT can be generated and verified, and user role and permission information can be included in advanced usage. 4. Common errors include signature verification failure, token expiration, and payload oversized. Debugging skills include using debugging tools and logging. 5. Performance optimization and best practices include using appropriate signature algorithms, setting validity periods reasonably,

Static binding (static::) implements late static binding (LSB) in PHP, allowing calling classes to be referenced in static contexts rather than defining classes. 1) The parsing process is performed at runtime, 2) Look up the call class in the inheritance relationship, 3) It may bring performance overhead.

Causes and solutions for errors when using PECL to install extensions in Docker environment When using Docker environment, we often encounter some headaches...

What are the magic methods of PHP? PHP's magic methods include: 1.\_\_construct, used to initialize objects; 2.\_\_destruct, used to clean up resources; 3.\_\_call, handle non-existent method calls; 4.\_\_get, implement dynamic attribute access; 5.\_\_set, implement dynamic attribute settings. These methods are automatically called in certain situations, improving code flexibility and efficiency.

Method for obtaining the return code when Laravel email sending fails. When using Laravel to develop applications, you often encounter situations where you need to send verification codes. And in reality...

Running multiple PHP versions simultaneously in the same system is a common requirement, especially when different projects depend on different versions of PHP. How to be on the same...

In PHP8, match expressions are a new control structure that returns different results based on the value of the expression. 1) It is similar to a switch statement, but returns a value instead of an execution statement block. 2) The match expression is strictly compared (===), which improves security. 3) It avoids possible break omissions in switch statements and enhances the simplicity and readability of the code.

In PHP, you can effectively prevent CSRF attacks by using unpredictable tokens. Specific methods include: 1. Generate and embed CSRF tokens in the form; 2. Verify the validity of the token when processing the request.
