Home Backend Development PHP Tutorial Detailed explanation of the difference between mysql_connect and mysql_pconncet in PHP_PHP tutorial

Detailed explanation of the difference between mysql_connect and mysql_pconncet in PHP_PHP tutorial

Jul 21, 2016 pm 03:10 PM
connect mysql php and the difference of parse Detailed explanation Talk about it

Let’s talk about the difference between mysql_connect and mysql_pconnect . The usage of these two functions is similar. Some people on the Internet say that pconnect should be used. Ambiguous. So what is this thing like?

A permanent link does not mean that the server opens a connection and then everyone shares the link. Permanent connections also open a connection for each client. If 200 people visit, there will be 200 connections. In fact, mysql_pconnect() itself does not do much processing. The only thing it does is not to actively close the mysql connection after PHP is running.

When PHP is run in cgi mode, pconnect and connect are basically absent. The difference is that in the cgi method, each PHP access starts a process. After the access is completed, the process ends and all resources are released. When PHP is run in the apache module mode, since apache uses a process pool, an httpd process ends. After that, it will be put back into the process pool, which means that the mysql connection resource opened with pconnect will not be released, so it can be reused when there is the next connection request. This makes it possible to use Apache when the concurrent access volume is not large. , due to the use of pconnect, PHP saves the time of repeatedly connecting to the db, making the access speed faster. This should be easier to understand. However, when the concurrent access volume of apache is large, if pconnect is used, it will be occupied by some previous httpd processes. If the mysql connection is not closed, it may be that mysql has reached the maximum number of connections, so that some subsequent requests will never be satisfied. If the maximum number of mysql connections is set to 500, and the maximum number of simultaneous accesses of apache is set to 2000, assuming that all Access will require access to the db, and the operation time will be relatively long. When the current 500 httpd requests are not completed, subsequent httd processes will not be able to connect to mysql (because the maximum number of mysql connections has been reached). Only the current 500 Mysql can be connected only after the httpd process ends or is reused.

When the db operation is complex and takes a long time, httpd will fork many concurrent processes, and the httpd process generated first will not release the db connection. , making the later httpd process unable to connect to the db. Because the mysql connections of other httpd processes are not reused, many connection timeouts will occur. When the number of concurrent visits is not high, using pconnect can simply improve the access speed, but after the amount of concurrency increases, whether to use pconnect again depends on the programmer's choice.

In my personal opinion, PHP now The connection to mysql does not really use the connection pool, pconnect is just equivalent to borrowing the process pool of apache, so pconnect cannot improve the efficiency of accessing the db when the amount of concurrent access is large.

In actual applications, using mysql_pconnect, each refresh and requesting a new page is faster, while using mysql_connect, each refresh must be re-requested. When the database connection is slow, the difference can be seen. . When your database connection is slow, the DB operation is not very complicated, and your program is confident enough that it will not cause deadlock, or you have control over the server and meet any two of the above four conditions , then you can use pconnect.

pconnect does not need to be closed in the script. You can set the lifetime in mysql, or you can write a shell to scan regularly and kill connections that have been dormant for too long. One sentence summary: To make good use of pconnect, it is not only a matter of php scripts, but also related to the settings of the database and server.

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/327140.htmlTechArticle Let’s talk about the difference between mysql_connect and mysql_pconnect. The usage of these two functions is similar. It is said on the Internet that pconnect should be used, pconnect It's a good thing; some people regard pconnect as a scourge...
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

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Roblox: Bubble Gum Simulator Infinity - How To Get And Use Royal Keys
3 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Nordhold: Fusion System, Explained
3 weeks 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)

Hot Topics

Java Tutorial
1664
14
PHP Tutorial
1269
29
C# Tutorial
1248
24
Explain the purpose of foreign keys in MySQL. Explain the purpose of foreign keys in MySQL. Apr 25, 2025 am 12:17 AM

In MySQL, the function of foreign keys is to establish the relationship between tables and ensure the consistency and integrity of the data. Foreign keys maintain the effectiveness of data through reference integrity checks and cascading operations. Pay attention to performance optimization and avoid common errors when using them.

Compare and contrast MySQL and MariaDB. Compare and contrast MySQL and MariaDB. Apr 26, 2025 am 12:08 AM

The main difference between MySQL and MariaDB is performance, functionality and license: 1. MySQL is developed by Oracle, and MariaDB is its fork. 2. MariaDB may perform better in high load environments. 3.MariaDB provides more storage engines and functions. 4.MySQL adopts a dual license, and MariaDB is completely open source. The existing infrastructure, performance requirements, functional requirements and license costs should be taken into account when choosing.

What happens if session_start() is called multiple times? What happens if session_start() is called multiple times? Apr 25, 2025 am 12:06 AM

Multiple calls to session_start() will result in warning messages and possible data overwrites. 1) PHP will issue a warning, prompting that the session has been started. 2) It may cause unexpected overwriting of session data. 3) Use session_status() to check the session status to avoid repeated calls.

What currency does Ripple (XRP currency) belong to? Detailed tutorial for beginners What currency does Ripple (XRP currency) belong to? Detailed tutorial for beginners Apr 28, 2025 pm 07:57 PM

Created by Ripple, Ripple is used for cross-border payments, which are fast and low-cost and suitable for small transaction payments. After registering a wallet and exchange, purchase and storage can be made.

Composer: Aiding PHP Development Through AI Composer: Aiding PHP Development Through AI Apr 29, 2025 am 12:27 AM

AI can help optimize the use of Composer. Specific methods include: 1. Dependency management optimization: AI analyzes dependencies, recommends the best version combination, and reduces conflicts. 2. Automated code generation: AI generates composer.json files that conform to best practices. 3. Improve code quality: AI detects potential problems, provides optimization suggestions, and improves code quality. These methods are implemented through machine learning and natural language processing technologies to help developers improve efficiency and code quality.

MySQL: The Database, phpMyAdmin: The Management Interface MySQL: The Database, phpMyAdmin: The Management Interface Apr 29, 2025 am 12:44 AM

MySQL and phpMyAdmin can be effectively managed through the following steps: 1. Create and delete database: Just click in phpMyAdmin to complete. 2. Manage tables: You can create tables, modify structures, and add indexes. 3. Data operation: Supports inserting, updating, deleting data and executing SQL queries. 4. Import and export data: Supports SQL, CSV, XML and other formats. 5. Optimization and monitoring: Use the OPTIMIZETABLE command to optimize tables and use query analyzers and monitoring tools to solve performance problems.

What is the significance of the session_start() function? What is the significance of the session_start() function? May 03, 2025 am 12:18 AM

session_start()iscrucialinPHPformanagingusersessions.1)Itinitiatesanewsessionifnoneexists,2)resumesanexistingsession,and3)setsasessioncookieforcontinuityacrossrequests,enablingapplicationslikeuserauthenticationandpersonalizedcontent.

What is the difference between php framework laravel and yii What is the difference between php framework laravel and yii Apr 30, 2025 pm 02:24 PM

The main differences between Laravel and Yii are design concepts, functional characteristics and usage scenarios. 1.Laravel focuses on the simplicity and pleasure of development, and provides rich functions such as EloquentORM and Artisan tools, suitable for rapid development and beginners. 2.Yii emphasizes performance and efficiency, is suitable for high-load applications, and provides efficient ActiveRecord and cache systems, but has a steep learning curve.

See all articles