search
HomeBackend DevelopmentPHP TutorialDetailed explanation of the method of storing sessions in php into redis or memcache

Introduction to Session

session, often translated as conversation in Chinese, its original meaning refers to a series of actions/messages that have a beginning and an end, such as from picking up the phone to dialing to hanging up when making a phone call. The series of processes in the middle can be called a session. Sometimes we can see words like "During a browser session,..." The word session here is used in its original meaning, which refers to the period from the opening to closing of a browser window①. The most confusing thing is the sentence "the user (client) during a session", which may refer to a series of actions of the user (generally a series of actions related to a specific purpose, such as from logging in to purchasing goods). The online shopping process from checkout to logout is sometimes called a transaction). However, sometimes it may just refer to a connection, or it may refer to meaning ①. The difference can only be inferred from the context ②.

However, when the word session is associated with a network protocol, it often implies two meanings: "connection-oriented" and/or "maintaining state". "Connection-oriented" refers to the communication between both parties. Before communicating, you must first establish a communication channel, such as making a phone call. Communication cannot begin until the other party answers the phone. In contrast, when you send a letter, you cannot confirm whether the other party's address is correct. The communication channel may not be established, but for the sender, the communication has already begun. "Maintaining status" means that the communicating party can associate a series of messages so that the messages can depend on each other. For example, a waiter can recognize an old customer who comes again and remember that the customer owed the store a dollar last time. . Examples of this category include "a TCP session" or "a POP3 session" ③.

In the era of vigorous development of web servers, the semantics of session in the context of web development have been expanded. Its meaning refers to a type of information used to maintain state between the client and the server. Solution ④. Sometimes session is also used to refer to the storage structure of this solution, such as "Save xxx in session"⑤. Since various languages ​​used for web development provide support for this solution to a certain extent, session is also used to refer to the solution of that language in the context of a specific language, such as often The javax.servlet.http.HttpSession provided in Java is referred to as session⑥.

Since this confusion is irreversible, the use of the word session in this article will also have different meanings depending on the context. Please pay attention to the distinction.
In this article, the Chinese "browser session period" is used to express the meaning ①, the "session mechanism" is used to express the meaning ④, the "session" is used to express the meaning ⑤, and the specific "HttpSession" is used to express the meaning ⑥

Why should SESSION be saved in the cache?

As far as PHP is concerned, the session supported by the language itself is saved to a disk file in the form of a file, and is saved in the specified In the folder, the saved path can be set in the configuration file or using the function session_save_path() in the program. However, there are disadvantages to doing so.

The first is to save to the file system, which is inefficient. As long as the session is used, the specified sessionid will be searched from multiple files, which is very inefficient.

The second is that when multiple servers are used, the problem of session loss may occur (actually it is saved on other servers).

Of course, saving in the cache can solve the above problem. If you use PHP's own session function, you can use the session_set_save_handler() function to easily re-control the session processing process. If you don't use PHP's session series functions, you can write a similar session function yourself, which is also possible. This is the project I'm working on now. It will calculate the hash as the sessionId based on the user's mid and login time. Each time it is requested, The sessionId must be added to be legal (it is not needed when logging in for the first time, the sessionId will be created at this time and returned to the client). This is also very convenient, concise and efficient. Of course, what I am mainly talking about in this article is "manipulating things" in PHP's own SESSION.

SESSION is saved in the cache

php saves the cache to Redis. You can use the configuration file to modify the processing and saving of the session. Of course, in the program You can also use the ini_set() function to modify it. This is very convenient for testing. I will use this method here. Of course, if it is a production environment, it is recommended to use the configuration file.

If you want to simply operate the session into redis, you can run the following code

<?php
ini_set("session.save_handler", "redis");
ini_set("session.save_path", "tcp://localhost:6379");
session_start();
header("Content-type:text/html;charset=utf-8");
$_SESSION[&#39;view&#39;] = &#39;zhangsan&#39;;
echo $_SESSION[&#39;view&#39;];

Here, set the session.save_handler mode to redis, and session.save_path to the address and port of redis. Refresh after setting. If you look back at redis, you will find that the sessionId is generated in redis. The sessionId is the same as the one requested by the browser.

If it is memcache

<?php
ini_set("session.save_handler", "memcache");
ini_set("session.save_path", "tcp://localhost:11211");
session_start();
header("Content-type:text/html;charset=utf-8");
$_SESSION[&#39;view&#39;] = &#39;zhangsan&#39;;
echo $_SESSION[&#39;view&#39;];

, you can also use

Session_set_save_handler(‘open’,’close’,’ read’,’ write’,’ destory’,’ gc’);

The usage is as follows: Customize a Redis_session class

<?php
class RedisSession{
    private $_redis = array(
        &#39;handler&#39; => null, //数据库连接句柄
        &#39;host&#39; => null,   //redis端口号
        &#39;port&#39; => null,
    );
    public function __construct($array = array()){
        isset($array[&#39;host&#39;])?$array[&#39;host&#39;]:"false";
        isset($array[&#39;port&#39;])?$array[&#39;host&#39;]:"false";
        $this->_redis = array_merge($this->_redis, $array);
    }
    public function begin(){
        //设置session处理函数
        session_set_save_handler(
            array($this, &#39;open&#39;),
            array($this, &#39;close&#39;),
            array($this, &#39;read&#39;),
            array($this, &#39;write&#39;),
            array($this, &#39;destory&#39;),
            array($this, &#39;gc&#39;)
        );
    }
    public function open(){
        $redis = new Redis();
        $redis->connect($this->_redis[&#39;host&#39;], $this->_redis[&#39;port&#39;]);
        if(!$redis){
            return false;
        }
 
        $this->_redis[&#39;handler&#39;] = $redis;
        $this->gc(null);
        return true;
    }
    //关
    public function close(){
        return $this->_redis[&#39;handler&#39;]->close();
    }
    //读
    public function read($session_id){
        return $this->_redis[&#39;handler&#39;]->get($session_id);
    }
    //写
    public function write($sessionId, $sessionData){
        return $this->_redis[&#39;handler&#39;]->set($sessionId, $sessionData);
    }
    public function destory($sessionId){
        return $this->_redis[&#39;handler&#39;]->delete($sessionId) >= 1 ? true : false;
    }
    public function gc(){
        //获取所有sessionid,让过期的释放掉
        $this->_redis[&#39;handler&#39;]->keys("*");
        return true;
    }
}
$ses = new RedisSession(array(&#39;host&#39;=>&#39;127.0.0.1&#39;,&#39;port&#39;=>&#39;6379&#39;));
$ses->begin();
session_start();
$_SESSION[&#39;name&#39;]=&#39;zhangsan&#39;;
echo $_SESSION[&#39;name&#39;];

In this way, session data such as redis must be installed during the execution of the redis code

The above is the detailed content of Detailed explanation of the method of storing sessions in php into redis or memcache. For more information, please follow other related articles on the PHP Chinese website!

Statement
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
The Continued Use of PHP: Reasons for Its EnduranceThe Continued Use of PHP: Reasons for Its EnduranceApr 19, 2025 am 12:23 AM

What’s still popular is the ease of use, flexibility and a strong ecosystem. 1) Ease of use and simple syntax make it the first choice for beginners. 2) Closely integrated with web development, excellent interaction with HTTP requests and database. 3) The huge ecosystem provides a wealth of tools and libraries. 4) Active community and open source nature adapts them to new needs and technology trends.

PHP and Python: Exploring Their Similarities and DifferencesPHP and Python: Exploring Their Similarities and DifferencesApr 19, 2025 am 12:21 AM

PHP and Python are both high-level programming languages ​​that are widely used in web development, data processing and automation tasks. 1.PHP is often used to build dynamic websites and content management systems, while Python is often used to build web frameworks and data science. 2.PHP uses echo to output content, Python uses print. 3. Both support object-oriented programming, but the syntax and keywords are different. 4. PHP supports weak type conversion, while Python is more stringent. 5. PHP performance optimization includes using OPcache and asynchronous programming, while Python uses cProfile and asynchronous programming.

PHP and Python: Different Paradigms ExplainedPHP and Python: Different Paradigms ExplainedApr 18, 2025 am 12:26 AM

PHP is mainly procedural programming, but also supports object-oriented programming (OOP); Python supports a variety of paradigms, including OOP, functional and procedural programming. PHP is suitable for web development, and Python is suitable for a variety of applications such as data analysis and machine learning.

PHP and Python: A Deep Dive into Their HistoryPHP and Python: A Deep Dive into Their HistoryApr 18, 2025 am 12:25 AM

PHP originated in 1994 and was developed by RasmusLerdorf. It was originally used to track website visitors and gradually evolved into a server-side scripting language and was widely used in web development. Python was developed by Guidovan Rossum in the late 1980s and was first released in 1991. It emphasizes code readability and simplicity, and is suitable for scientific computing, data analysis and other fields.

Choosing Between PHP and Python: A GuideChoosing Between PHP and Python: A GuideApr 18, 2025 am 12:24 AM

PHP is suitable for web development and rapid prototyping, and Python is suitable for data science and machine learning. 1.PHP is used for dynamic web development, with simple syntax and suitable for rapid development. 2. Python has concise syntax, is suitable for multiple fields, and has a strong library ecosystem.

PHP and Frameworks: Modernizing the LanguagePHP and Frameworks: Modernizing the LanguageApr 18, 2025 am 12:14 AM

PHP remains important in the modernization process because it supports a large number of websites and applications and adapts to development needs through frameworks. 1.PHP7 improves performance and introduces new features. 2. Modern frameworks such as Laravel, Symfony and CodeIgniter simplify development and improve code quality. 3. Performance optimization and best practices further improve application efficiency.

PHP's Impact: Web Development and BeyondPHP's Impact: Web Development and BeyondApr 18, 2025 am 12:10 AM

PHPhassignificantlyimpactedwebdevelopmentandextendsbeyondit.1)ItpowersmajorplatformslikeWordPressandexcelsindatabaseinteractions.2)PHP'sadaptabilityallowsittoscaleforlargeapplicationsusingframeworkslikeLaravel.3)Beyondweb,PHPisusedincommand-linescrip

How does PHP type hinting work, including scalar types, return types, union types, and nullable types?How does PHP type hinting work, including scalar types, return types, union types, and nullable types?Apr 17, 2025 am 12:25 AM

PHP type prompts to improve code quality and readability. 1) Scalar type tips: Since PHP7.0, basic data types are allowed to be specified in function parameters, such as int, float, etc. 2) Return type prompt: Ensure the consistency of the function return value type. 3) Union type prompt: Since PHP8.0, multiple types are allowed to be specified in function parameters or return values. 4) Nullable type prompt: Allows to include null values ​​and handle functions that may return null values.

See all articles

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 Tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.