


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

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

1. Start the [Start] menu, enter [cmd], right-click [Command Prompt], and select Run as [Administrator]. 2. Enter the following commands in sequence (copy and paste carefully): SCconfigwuauservstart=auto, press Enter SCconfigbitsstart=auto, press Enter SCconfigcryptsvcstart=auto, press Enter SCconfigtrustedinstallerstart=auto, press Enter SCconfigwuauservtype=share, press Enter netstopwuauserv , press enter netstopcryptS

The caching strategy in GolangAPI can improve performance and reduce server load. Commonly used strategies are: LRU, LFU, FIFO and TTL. Optimization techniques include selecting appropriate cache storage, hierarchical caching, invalidation management, and monitoring and tuning. In the practical case, the LRU cache is used to optimize the API for obtaining user information from the database. The data can be quickly retrieved from the cache. Otherwise, the cache can be updated after obtaining it from the database.

In PHP development, the caching mechanism improves performance by temporarily storing frequently accessed data in memory or disk, thereby reducing the number of database accesses. Cache types mainly include memory, file and database cache. Caching can be implemented in PHP using built-in functions or third-party libraries, such as cache_get() and Memcache. Common practical applications include caching database query results to optimize query performance and caching page output to speed up rendering. The caching mechanism effectively improves website response speed, enhances user experience and reduces server load.

First you need to set the system language to Simplified Chinese display and restart. Of course, if you have changed the display language to Simplified Chinese before, you can just skip this step. Next, start operating the registry, regedit.exe, directly navigate to HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlNlsLanguage in the left navigation bar or the upper address bar, and then modify the InstallLanguage key value and Default key value to 0804 (if you want to change it to English en-us, you need First set the system display language to en-us, restart the system and then change everything to 0409) You must restart the system at this point.

Using Redis cache can greatly optimize the performance of PHP array paging. This can be achieved through the following steps: Install the Redis client. Connect to the Redis server. Create cache data and store each page of data into a Redis hash with the key "page:{page_number}". Get data from cache and avoid expensive operations on large arrays.

Yes, Navicat can connect to Redis, which allows users to manage keys, view values, execute commands, monitor activity, and diagnose problems. To connect to Redis, select the "Redis" connection type in Navicat and enter the server details.

1. First, double-click the [This PC] icon on the desktop to open it. 2. Then double-click the left mouse button to enter [C drive]. System files will generally be automatically stored in C drive. 3. Then find the [windows] folder in the C drive and double-click to enter. 4. After entering the [windows] folder, find the [SoftwareDistribution] folder. 5. After entering, find the [download] folder, which contains all win11 download and update files. 6. If we want to delete these files, just delete them directly in this folder.

Redis is a high-performance key-value cache. The PHPRedis extension provides an API to interact with the Redis server. Use the following steps to connect to Redis, store and retrieve data: Connect: Use the Redis classes to connect to the server. Storage: Use the set method to set key-value pairs. Retrieval: Use the get method to obtain the value of the key.
