P A question of PHPCHINA compiled:
1. Use the MySQL_CONNECT () function to create a single class, such as:
[code = php] Class db
{
private static $ db = null; t ()
*');
’’’’ ,, )
4. Prioritize the long connection PHP code
[code="PHP"]if(mysql_pconnect())
{
$conn=mysql_pconnect();
}else{
$conn=mysql_connect();
}[/ code] Which of the above four methods has higher performance? Or for different concurrency situations, which connection is better in which scenario?
Some people answered as follows:
At the PHP level, no matter how you write the code, it is Half a catty, no difference. Let me emphasize the difference between long connections and ordinary links:
Permanent links do 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, there is basically no difference between pconnect and connect, because cgi The method is that 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 will be put back after it ends. Process pool, this also prevents the mysql connection resource opened with pconnect from being released, so it can be reused when there is the next connection request. This allows when the concurrent access of apache 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 you use pconnect, the mysql connection occupied by some previous httpd processes will not be 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, it is assumed that all accesses will require access to the db , and the operation time will be relatively long. When the current 500 httpd requests have not ended, subsequent httpd processes will not be able to connect to mysql (because the maximum number of mysql connections has been reached). Only the current 500 httpd processes have ended or been blocked. Only by reusing can you connect to mysql
When the db operation is complex and takes a long time, httpd will fork many concurrent processes, and the httpd process generated first does not release the db connection, so that the httpd process generated later cannot connect to the db. . Because this does not reuse the mysql connection of other httpd processes. Therefore, many connection timeouts will occur. When the amount of concurrent access 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.
PHP's connection to mysql does not really use the connection pool , pconnect is just equivalent to borrowing the process pool of apache, so when the concurrent access volume is large, pconnect cannot improve the efficiency of accessing the db.
pconnect does not need to be closed in the script. You can set the lifetime in mysql, or write a shell to scan regularly and kill connections that have been dormant for too long. One sentence summary: To use pconnect well, it is not only a matter of PHP scripts, but also related to the settings of the database and server.

PHPidentifiesauser'ssessionusingsessioncookiesandsessionIDs.1)Whensession_start()iscalled,PHPgeneratesauniquesessionIDstoredinacookienamedPHPSESSIDontheuser'sbrowser.2)ThisIDallowsPHPtoretrievesessiondatafromtheserver.

The security of PHP sessions can be achieved through the following measures: 1. Use session_regenerate_id() to regenerate the session ID when the user logs in or is an important operation. 2. Encrypt the transmission session ID through the HTTPS protocol. 3. Use session_save_path() to specify the secure directory to store session data and set permissions correctly.

PHPsessionfilesarestoredinthedirectoryspecifiedbysession.save_path,typically/tmponUnix-likesystemsorC:\Windows\TemponWindows.Tocustomizethis:1)Usesession_save_path()tosetacustomdirectory,ensuringit'swritable;2)Verifythecustomdirectoryexistsandiswrita

ToretrievedatafromaPHPsession,startthesessionwithsession_start()andaccessvariablesinthe$_SESSIONarray.Forexample:1)Startthesession:session_start().2)Retrievedata:$username=$_SESSION['username'];echo"Welcome,".$username;.Sessionsareserver-si

The steps to build an efficient shopping cart system using sessions include: 1) Understand the definition and function of the session. The session is a server-side storage mechanism used to maintain user status across requests; 2) Implement basic session management, such as adding products to the shopping cart; 3) Expand to advanced usage, supporting product quantity management and deletion; 4) Optimize performance and security, by persisting session data and using secure session identifiers.

The article explains how to create, implement, and use interfaces in PHP, focusing on their benefits for code organization and maintainability.

The article discusses the differences between crypt() and password_hash() in PHP for password hashing, focusing on their implementation, security, and suitability for modern web applications.

Article discusses preventing Cross-Site Scripting (XSS) in PHP through input validation, output encoding, and using tools like OWASP ESAPI and HTML Purifier.


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

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

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

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

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

SecLists
SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
