Table of Contents
Performance bottleneck
Filter Collection Class
Performance Test
Result
Home Backend Development PHP Tutorial Performance optimization for Laravel-permission project

Performance optimization for Laravel-permission project

Jul 06, 2018 pm 05:22 PM
laravel php php7

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

Performance optimization for Laravel-permission project

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:

  1. Keep a list of permissions belonging to a model.

  2. 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();
Copy after login

After modification:

$permission = $permissions
    ->filter(function ($permission) use ($id, $guardName) {
        return $permission->id === $id && $permission->guard_name === $guardName;
    })
    ->first();
Copy after login

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();
}
Copy after login

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();
}
Copy after login

Result

0.4880.603 (25%)0.198 (-59%)

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
Conclusion

We can conclude that for a project, repeatedly filtering a large collection will cause serious Performance bottleneck.

Multi-attribute filtering significantly increases the computational cost.

Using

Collection::filter() instead of Collection::where() can improve performance by 60%.

Warning: Passing the complete model to the filter callback is very performance intensive, it is better to pass individual attributes.

The above is the entire content of this article. I hope it will be helpful to everyone's study. For more related content, please pay attention to the PHP Chinese website!

Related recommendations:

Using Swoole's coroutine database query in Laravel 5.6

##Laravel's Facade appearance system Analysis


laravel Redis simply implements high concurrency processing of queues that passes stress testing

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!

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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Will R.E.P.O. Have Crossplay?
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Explain JSON Web Tokens (JWT) and their use case in PHP APIs. Apr 05, 2025 am 12:04 AM

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,

Explain late static binding in PHP (static::). Explain late static binding in PHP (static::). Apr 03, 2025 am 12:04 AM

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.

Why does an error occur when installing an extension using PECL in a Docker environment? How to solve it? Why does an error occur when installing an extension using PECL in a Docker environment? How to solve it? Apr 01, 2025 pm 03:06 PM

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 PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? What are PHP magic methods (__construct, __destruct, __call, __get, __set, etc.) and provide use cases? Apr 03, 2025 am 12:03 AM

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.

How to get the return code when email sending fails in Laravel? How to get the return code when email sending fails in Laravel? Apr 01, 2025 pm 02:45 PM

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...

How to make PHP5.6 and PHP7 coexist through Nginx configuration on the same server? How to make PHP5.6 and PHP7 coexist through Nginx configuration on the same server? Apr 01, 2025 pm 03:15 PM

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...

Explain the match expression (PHP 8 ) and how it differs from switch. Explain the match expression (PHP 8 ) and how it differs from switch. Apr 06, 2025 am 12:03 AM

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.

What is Cross-Site Request Forgery (CSRF) and how do you implement CSRF protection in PHP? What is Cross-Site Request Forgery (CSRF) and how do you implement CSRF protection in PHP? Apr 07, 2025 am 12:02 AM

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.

See all articles