


Analyze the implementation principles of session in PHP and issues that should be paid attention to when applying large websites
PHP
SESSION principle
We know that session is a method of maintaining user session data on the server side, and the corresponding cookie is
Keep user data on the client side. The HTTP protocol is a stateless protocol. After the server responds, it loses contact with the browser. At the earliest, Netscape introduced cookies into the browser, making
Data can be exchanged across pages by the client, so how does the server remember the session data of many users?
First of all, we need to establish a one-to-one connection between the client and the server. Each client
Each client must have a unique identifier so that the server can identify it. It is recommended that there are two methods of unique identification: cookie or specified through GET. The default configuration of PHP uses session
A cookie named "PHPSESSID" will be created (can be specified by modifying the session.name value in php.ini). If the client disables cookies, you
You can also specify the session to be retrieved through GET
The id is transmitted to the server (modify parameters such as session.use_trans_sid in php.ini).
When we look at the server-side session.save_path directory, we will find many files similar to sess_vv9lpgf0nmkurgvkba1vbvj915. This
In fact, it is the data corresponding to the session id "vv9lpgf0nmkurgvkba1vbvj915". The truth is here, the client will session
The id is passed to the server, and the server depends on the session
Find the corresponding file by id. When reading, deserialize the file content to get the session value. When saving, serialize first and then write.
This is the fact
Like this, so if the server does not support session or you want to customize the session, you can DIY and generate a session that will never be repeated through PHP's uniqid.
id, and then find a place to store the session content. You can also learn flickr to store the session in a MySQL database.
Why do you have to execute session_start() before using session?
Up
After understanding the principle, the so-called session is actually a session id on the client side and a session on the server side.
file, executing session_start() before creating a new session tells the server to plant a cookie and prepare the session file, otherwise your
How to store session content; executing session_start() before reading the session tells the server to quickly follow the session
id deserializes the session file.
Only one session function can be executed before session_start(), session_name(): read or specify the session name (for example, the default is "PHPSESSID"), of course this must be executed before session_start.
session affects system performance
session
System performance is indeed affected on websites with high traffic volume. One of the reasons affecting performance is caused by the file system design. When there are more than 10,000 files in the same directory, file positioning will be very time-consuming. PHP supports
session directory hash, we can modify session.save_path = in php.ini
"2;/path/to/session/dir", then the session will be stored in two-level subdirectories, each directory has 16 subdirectories [0~f], but it seems that PHP
Session does not support creating directories. You need to create those directories in advance.
Another problem is the efficiency of small files. Generally, our
The session data will not be too large (1~2K). If there are a large number of 1~2K files on the disk, the IO efficiency will definitely be very poor. The PHP manual recommends using the Reiserfs file system.
system, but the future of Reiserfs is worrying. The author of Reiserfs killed his wife, and SuSE also abandoned Reiserfs.
Actually there are many more
The method of storing session can be viewed through php -i|grep "Registered save handlers", such as Registered save
handlers => files user sqlite
eaccelerator can be stored through files, users, sqlite, and eaccelerator. If the server is installed with memcached, there will also be mmcache.
options. Of course there are many more, such as MySQL, PostgreSQL, etc. All are good choices.
Session synchronization
Our front-end may have many servers. The user logs in on server A, plants the session information, and then visits some pages of the website and may jump to server B. If there is no session on server B at this time, If the information is not processed specially, problems may arise.
There are many types of session synchronization. If you store it in memcached or MySQL, it is very easy. Just specify it to the same location. If it is in file form, you can use NFS to store it uniformly.
Another way is to use encrypted cookies. When the user successfully logs in on server A, an encrypted cookie is planted on the user's browser. When the user visits server B, check whether there is
session, if it exists, of course there is no problem. If not, check whether the cookie is valid. If the cookie is valid, re-establish the session on server B. This method is actually quite
It is very useful if the website has many sub-channels, the servers are not in the same computer room, the sessions cannot be synchronized and you want to log in uniformly.
Of course there is another way
It maintains the session at the load balancing layer and binds the visitor to a certain server. All his visits are on that server and there is no need for session synchronization. These are all things at the operation and maintenance level. Just say this
There are so many, choose to use session according to your own application. Don't be timid because everyone says that session affects system performance. Knowing the problem and solving the problem are the key. If you can't afford to offend or hide, you are not suitable here.

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

The problem was found in the springboot project production session-out timeout. The problem is described below: In the test environment, the session-out was configured by changing the application.yaml. After setting different times to verify that the session-out configuration took effect, the expiration time was directly set to 8 hours for release. Arrived in production environment. However, I received feedback from customers at noon that the project expiration time was set to be short. If no operation is performed for half an hour, the session will expire and require repeated logins. Solve the problem of handling the development environment: the springboot project has built-in Tomcat, so the session-out configured in application.yaml in the project is effective. Production environment: Production environment release is

Session failure is usually caused by the session lifetime expiration or server shutdown. The solutions: 1. Extend the lifetime of the session; 2. Use persistent storage; 3. Use cookies; 4. Update the session asynchronously; 5. Use session management middleware.

Solution to the cross-domain problem of PHPSession In the development of front-end and back-end separation, cross-domain requests have become the norm. When dealing with cross-domain issues, we usually involve the use and management of sessions. However, due to browser origin policy restrictions, sessions cannot be shared by default across domains. In order to solve this problem, we need to use some techniques and methods to achieve cross-domain sharing of sessions. 1. The most common use of cookies to share sessions across domains

Solution to the problem that the php session disappears after refreshing: 1. Open the session through "session_start();"; 2. Write all public configurations in a php file; 3. The variable name cannot be the same as the array subscript; 4. In Just check the storage path of the session data in phpinfo and check whether the sessio in the file directory is saved successfully.

The default expiration time of session PHP is 1440 seconds, which is 24 minutes, which means that if the client does not refresh for more than 24 minutes, the current session will expire; if the user closes the browser, the session will end and the Session will no longer exist.

Problem: Today, we encountered a setting timeout problem in our project, and changes to SpringBoot2’s application.properties never took effect. Solution: The server.* properties are used to control the embedded container used by SpringBoot. SpringBoot will create an instance of the servlet container using one of the ServletWebServerFactory instances. These classes use server.* properties to configure the controlled servlet container (tomcat, jetty, etc.). When the application is deployed as a war file to a Tomcat instance, the server.* properties do not apply. They do not apply,

JavaScriptCookies Using JavaScript cookies is the most effective way to remember and track preferences, purchases, commissions and other information. Information needed for a better visitor experience or website statistics. PHPCookieCookies are text files that are stored on client computers and retained for tracking purposes. PHP transparently supports HTTP cookies. How do JavaScript cookies work? Your server sends some data to your visitor's browser in the form of a cookie. Browsers can accept cookies. If present, it will be stored on the visitor's hard drive as a plain text record. Now, when a visitor reaches another page on the site

When you are using a PHP session (Session), sometimes you will find that the Session can be read normally in one file, but cannot be read in another file. This may confuse you since session data is supposed to be shared across the entire application. This article will explain how to correctly read and write PHP session data in multiple files.
