


PHP session optimally writes information to memcache for management_PHP tutorial
PHP session optimally writes information into memcache for management
I also talked about the methods and benefits of using memcache to store data information cache, which can reduce the number of database accesses and reduce the pressure on the database when the number of visits is large
To store and manage sessions in memcache, you need to understand the use of memcache, session and session_set_save_handler()
Similarly write a public class first, using static member methods of course
The memcache command is operated by telnet
Similarly create the required files in the root directory
Memsession.class.php is the public memcache storage class file, one.php, two.php and three.php are test files, and items.php is the output data array
session.class.php:
First define the variables used to connect to memcache and initialize them
<!--?php class MemSession{ private static $handler=null; private static $lifetime=null; private static $time=null; const NS='session_'; //定义下标 ...  ... }     $memcache=new Memcache;     //连接memcache     $memcache--->connect("localhost",11211) or die("could not connect"); MemSession::start($memcache);
Note that NS is a constant, define subscript
Reinitialization method
//初始化方法 private static function init($handler){ self::$handler=$handler; self::$lifetime=ini_get('session.gc_maxlifetime'); self::$time=time(); }
Open the session and define calls to open, close and other methods in this class
//开启session public static function start(Memcache $memcache){ //首先将属性初始化 self::init($memcache); //调用handler,以后调用handler时都是用memcache session_set_save_handler( array(__CLASS__,'open'),//调用本类的open方法 array(__CLASS__,'close'), array(__CLASS__,'read'), array(__CLASS__,'write'), array(__CLASS__,'destroy'), array(__CLASS__,'gc') ); //调用session_start() session_start(); }
The next step is to define the methods called above
open() and close() only need to return true, but the parameters of open() are path and name
public static function open($path, $name){ return true; } public static function close(){ return true; }
read() only needs to have the PHPSESSID parameter
But it is necessary to determine whether the incoming out parameter has a value, and if it has a value, return the out data
public static function read($PHPSESSID){ $out=self::$handler->get(self::session_key($PHPSESSID)); //得到该下标输出的数据 if($out===false || $out ==null){ return ''; //out得到数据没有,返回空 } return $out; //返回得到的数据 }
write():
Returns its own id, data, and lifespan
public static function write($PHPSESSID, $data){ //判断是否有数据 $method=$data ? 'set' : 'relpace'; return self::$handler->$method(self::session_key($PHPSESSID), $data, MEMCACHE_COMPRESSED, self::$lifetime); }
destroy() and gc():
destroy() calls its own delete method
public static function destroy($PHPSESSID){ return self::$handler->delete(self::session_key($PHPSESSID)); //调用delete方法 } public static function gc($lifetime){ return true; }
Next you need to define a method to pass in PHPSESSID
private static function session_key($PHPSESSID){ $session_key=self::NS.$PHPSESSID; //键值为自身和传进来的phpsessid return $session_key; }
The results show
If successful, display in telnet
Indicates that the session data information is successfully stored in memcache

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

Microsoft Word documents contain some metadata when saved. These details are used for identification on the document, such as when it was created, who the author was, date modified, etc. It also has other information such as number of characters, number of words, number of paragraphs, and more. If you might want to remove the author or last modified information or any other information so that other people don't know the values, then there is a way. In this article, let’s see how to remove a document’s author and last modified information. Remove author and last modified information from Microsoft Word document Step 1 – Go to

Using System Information Click Start and enter System Information. Just click on the program as shown in the image below. Here you can find most of the system information, and one thing you can find is graphics card information. In the System Information program, expand Components, and then click Show. Let the program gather all the necessary information and once it's ready, you can find the graphics card-specific name and other information on your system. Even if you have multiple graphics cards, you can find most content related to dedicated and integrated graphics cards connected to your computer from here. Using the Device Manager Windows 11 Just like most other versions of Windows, you can also find the graphics card on your computer from the Device Manager. Click Start and then

In iOS 17, there's a new AirDrop feature that lets you exchange contact information with someone by touching two iPhones. It's called NameDrop, and here's how it works. Instead of entering a new person's number to call or text them, NameDrop allows you to simply place your iPhone near their iPhone to exchange contact details so they have your number. Putting the two devices together will automatically pop up the contact sharing interface. Clicking on the pop-up will display a person's contact information and their contact poster (you can customize and edit your own photos, also a new feature of iOS17). This screen also includes the option to "Receive Only" or share your own contact information in response.

Current image 3D reconstruction work usually uses a multi-view stereo reconstruction method (Multi-view Stereo) that captures the target scene from multiple viewpoints (multi-view) under constant natural lighting conditions. However, these methods usually assume Lambertian surfaces and have difficulty recovering high-frequency details. Another approach to scene reconstruction is to utilize images captured from a fixed viewpoint but with different point lights. Photometric Stereo methods, for example, take this setup and use its shading information to reconstruct the surface details of non-Lambertian objects. However, existing single-view methods usually use normal map or depth map to represent the visible

In iOS17, there is a new AirDrop feature that allows you to exchange contact information with someone by touching two iPhones at the same time. It's called NameDrop, and here's how it actually works. NameDrop eliminates the need to enter a new person's number to call or text them so they have your number, you can simply hold your iPhone close to their iPhone to exchange contact information. Putting the two devices together will automatically pop up the contact sharing interface. Clicking on the popup will display a person's contact information and their contact poster (a photo of your own that you can customize and edit, also new to iOS 17). This screen also includes "Receive Only" or share your own contact information in response

The reason for the delay in WeChat receiving information may be network problems, server load, version problems, device problems, message sending problems or other factors. Detailed introduction: 1. Network problems. The delay in receiving information on WeChat may be related to the network connection. If the network connection is unstable or the signal is weak, it may cause delays in information transmission. Please ensure that the mobile phone is connected to a stable network and the network signal strength is good. ; 2. Server load. When the WeChat server load is high, it may cause delays in information transmission, especially during busy periods or when a large number of users use WeChat at the same time, etc.

The transmission of information in computer networks is based on "words"; words are the basic unit of data transmission. Computer networks have two main functions: data communication and resource sharing, and the information transmitted in data communication is expressed in the form of binary data. Data communication is a communication method and communication service that uses data transmission technology to transfer data information between two terminals according to a certain communication protocol.

Apple has introduced a very fast (if not the fastest) way to share your contact information with another iPhone via NameDrop. Here's everything you need to know. What is NameDrop? iOS 17 introduces NameDrop, a revolutionary feature that leverages contact posters. These personalized cards can be created for yourself and other contacts and will appear whenever you make a call. With multiple customizable options such as photos, Memojis, monograms, and more, you can tailor your contact poster to match your personality using your preferred color scheme and fonts. NameDrop automatically shares your poster when your iPhone is in close proximity to other users, allowing both parties to effortlessly
