Detailed introduction to PHP-Mmecache operation class
The following class encapsulates memcache, including adding, reading, clearing, deleting, obtaining server information, caching service pool, etc.
<code><span><span><span><?php</span>/******************************************* * 文件名: /includes/memcache.class.php * 功能: memcache 缓存类 * 版本: 1.0 * 日期: 2016-07-16 * 程序名: memcache缓存操作类 -----(PHP中需加载memcache扩展) * 作者: JoeXiong * 版权: Copyright@2016-2016 github.com/JoeXiong All Rights Reserved *********************************************/</span><span><span>class</span><span>joememcache</span> {</span><span>private</span><span>static</span><span>$_instance</span>; <span>private</span><span>$_memcache</span>; <span>private</span><span>$_which</span> = <span>0</span>; <span>private</span><span>$_memservers</span>; <span>public</span><span>static</span><span><span>function</span><span>getInstance</span><span>()</span> {</span><span>if</span> (! (<span>self</span>::<span>$_instance</span><span>instanceof</span> joememcache)) { <span>self</span>::<span>$_instance</span> = <span>new</span><span>self</span>(); } <span>return</span> is_object(<span>self</span>::<span>$_instance</span>->_memcache) ? <span>self</span>::<span>$_instance</span> : <span>false</span>; } <span>private</span><span><span>function</span><span>__construct</span><span>()</span> {</span><span>if</span> (extension_loaded(<span>'memcache'</span>)) { <span>$this</span>->_memcache = <span>new</span> Memcache(); <span>$this</span>->_which = <span>1</span>; } <span>elseif</span> (extension_loaded(<span>'memcached'</span>)) { <span>$this</span>->_memcache = <span>new</span> Memcached(); <span>$this</span>->_which = <span>2</span>; } <span>else</span><span>$this</span>->_memcache = <span>FALSE</span>; } <span>/** * 保存缓存 *<span> @param</span> unknown $key *<span> @param</span> unknown $data *<span> @param</span> number $ttl *<span> @param</span> string $isCompress *<span> @return</span> boolean */</span><span>public</span><span><span>function</span><span>Save</span><span>(<span>$key</span>, <span>$data</span>, <span>$ttl</span> = <span>60</span>,<span>$isCompress</span> = FALSE)</span>{</span><span>if</span>(<span>$this</span>->_which == <span>1</span>) <span>return</span><span>$this</span>->_memcache->set(<span>$key</span>, <span>array</span>(<span>$data</span>, time(), <span>$ttl</span>), !<span>$isCompress</span> ? <span>0</span> : MEMCACHE_COMPRESSED, <span>$ttl</span>);<span>//使用time() 函数最新</span><span>else</span><span>if</span>(<span>$this</span>->_which == <span>2</span>) <span>return</span><span>$this</span>->_memcache->set(<span>$key</span>, <span>array</span>(<span>$data</span>, time(), <span>$ttl</span>), <span>$ttl</span>); <span>else</span><span>return</span><span>FALSE</span>; } <span>/** * 读取缓存信息 *<span> @param</span> unknown $key *<span> @return</span> Ambigous <multitype:, string>|boolean */</span><span>public</span><span><span>function</span><span>readMetaData</span><span>(<span>$key</span>)</span>{</span><span>$value</span> = <span>$this</span>->_memcache->get(<span>$key</span>); <span>if</span>(is_array(<span>$value</span>) && count(<span>$value</span>) == <span>3</span>){ <span>list</span>(<span>$data</span>, <span>$time</span>, <span>$ttl</span>) = <span>$value</span>; <span>return</span> (time() < <span>$time</span> + <span>$ttl</span>) ? <span>$data</span> : <span>array</span>(); } <span>else</span> { <span>return</span><span>false</span>; } } <span>/** *<span> @deprecated</span> 读取多个缓存信息 *<span> @param</span> array $array *<span> @return</span> 成功$value(array), 失败FALSE(bool) */</span><span>public</span><span><span>function</span><span>readMultiData</span><span>(<span>$keys</span>)</span> {</span><span>if</span>(!is_array(<span>$keys</span>)) { <span>return</span><span>FALSE</span>; } <span>$rtn</span> = <span>array</span>(); <span>if</span>(<span>$this</span>->_which == <span>1</span>) <span>$rtn</span> = <span>$this</span>->_memcache->get(<span>$keys</span>); <span>else</span><span>if</span>(<span>$this</span>->_which == <span>2</span>) <span>$rtn</span> = <span>$this</span>->_memcache->getMulti(<span>$keys</span>); <span>$now</span> = time(); <span>foreach</span>(<span>$rtn</span><span>as</span><span>$key</span>=>&<span>$v</span>) { <span>if</span>(!<span>empty</span>(<span>$v</span>)) { <span>list</span>(<span>$data</span>, <span>$time</span>, <span>$ttl</span>) = <span>$v</span>; <span>$v</span> = (<span>$now</span> < <span>$time</span> + <span>$ttl</span>) ? <span>$data</span> : <span>array</span>(); } } <span>return</span><span>$rtn</span>; } <span>/** *<span> @description</span> 读取缓存 *<span> @param</span> $key 查询索引key *<span> @return</span> 成功 array 失败 FALSE */</span><span>public</span><span><span>function</span><span>Read</span><span>(<span>$key</span>)</span> {</span><span>$data</span> = <span>$this</span>->_memcache->get(<span>$key</span>); <span>return</span> is_array(<span>$data</span>) ? <span>$data</span>[<span>0</span>] : <span>FALSE</span>; } <span>/** *<span> @description</span> 删除缓存 *<span> @param</span> $key 将要删除的key * return bool 成功 TRUE 失败 FALSE */</span><span>public</span><span><span>function</span><span>Delete</span><span>(<span>$key</span>)</span> {</span><span>return</span><span>$this</span>->_memcache->delete(<span>$key</span>); } <span>/** *<span> @description</span> 清空所有缓存 *<span> @return</span> bool true or false */</span><span>public</span><span><span>function</span><span>Clear</span><span>()</span> {</span><span>return</span><span>$this</span>->_memcache->flush(); } <span>/** * 获取缓存服务器池中所有服务器统计信息 *<span> @return</span> array */</span><span>public</span><span><span>function</span><span>getExtendedStats</span><span>()</span> {</span><span>//return $this->_memcache->getExtendedStats();</span><span>if</span>(<span>$this</span>->_which == <span>1</span>) { <span>return</span><span>$this</span>->_memcache->getExtendedStats(); } <span>else</span><span>if</span>(<span>$this</span>->_which == <span>2</span>) <span>return</span><span>$this</span>->_memcache->getServerList(); <span>else</span><span>return</span><span>FALSE</span>; } <span>/** * 缓存服务器池 */</span><span>public</span><span><span>function</span><span>addServer</span><span>()</span> {</span><span>foreach</span> (<span>$this</span>->_memservers <span>as</span><span>$h</span>) { <span>$this</span>->_memcache->addServer(<span>$h</span>[<span>'host'</span>], <span>isset</span>(<span>$h</span>[<span>'port'</span>]) ? <span>$h</span>[<span>'port'</span>] : <span>11211</span>); <span>// 默认端口为11211</span> } } <span>/** * 获取memecache服务器地址 */</span><span>public</span><span><span>function</span><span>getHost</span><span>()</span> {</span><span>return</span><span>$this</span>->_memservers; } <span>/** * 设置memcache服务器地址 */</span><span>public</span><span><span>function</span><span>setHost</span><span>(array <span>$servers</span>)</span> {</span><span>if</span> (is_array(<span>$servers</span>) && ! <span>empty</span>(<span>$servers</span>)) { <span>$this</span>->_memservers = <span>$servers</span>; <span>$this</span>->addServer(); } } <span>private</span><span><span>function</span><span>__clone</span><span>()</span> {</span>} }</span></span></span></code>
The following is how to use the encapsulated class
<code><span>//初始化memcache</span><span>$memcache</span> = joememcache::getInstance(); <span>//是否开启memcache扩展</span><span>if</span>(<span>$memcache</span>){ <span>//memcache的配置参数,放在配置文件中</span><span>global</span><span>$memServer</span>,<span>$memKey</span>; <span>//设置memecache服务器地址</span><span>$memcache</span>->setHost(<span>$memServer</span>); <span>//通过key读取数据</span><span>$news</span> = <span>$memcache</span>->readMetaData(<span>$memKey</span>[<span>'sharetypekey'</span>][<span>'10001'</span>][<span>'Key'</span>].<span>$id</span>); <span>//memcache没有当前key的数据,则从数据库查询并保存到memecache服务器中</span><span>if</span>(!<span>$news</span>){ <span>$news</span> = <span>$this</span>->getCurSharenewsInfo(<span>$id</span>); <span>$memcache</span>->Save(<span>$memKey</span>[<span>'sharetypekey'</span>][<span>'10001'</span>][<span>'Key'</span>].<span>$id</span>,<span>$news</span>,<span>$memKey</span>[<span>'sharetypekey'</span>][<span>'10001'</span>][<span>'Time'</span>]); } }<span>else</span>{ <span>//直接数据库查询数据</span><span>$news</span> = <span>$this</span>->getCurSharenewsInfo(<span>$id</span>); }</code>
The above has introduced the detailed introduction of the PHP-Mmecache operation class, including the relevant content. I hope it will be helpful to friends who are interested in PHP tutorials.

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

Many users will choose the Huawei brand when choosing smart watches. Among them, Huawei GT3pro and GT4 are very popular choices. Many users are curious about the difference between Huawei GT3pro and GT4. Let’s introduce the two to you. . What are the differences between Huawei GT3pro and GT4? 1. Appearance GT4: 46mm and 41mm, the material is glass mirror + stainless steel body + high-resolution fiber back shell. GT3pro: 46.6mm and 42.9mm, the material is sapphire glass + titanium body/ceramic body + ceramic back shell 2. Healthy GT4: Using the latest Huawei Truseen5.5+ algorithm, the results will be more accurate. GT3pro: Added ECG electrocardiogram and blood vessel and safety

The usage of return in C language is: 1. For functions whose return value type is void, you can use the return statement to end the execution of the function early; 2. For functions whose return value type is not void, the function of the return statement is to end the execution of the function. The result is returned to the caller; 3. End the execution of the function early. Inside the function, we can use the return statement to end the execution of the function early, even if the function does not return a value.

Why Snipping Tool Not Working on Windows 11 Understanding the root cause of the problem can help find the right solution. Here are the top reasons why the Snipping Tool might not be working properly: Focus Assistant is On: This prevents the Snipping Tool from opening. Corrupted application: If the snipping tool crashes on launch, it might be corrupted. Outdated graphics drivers: Incompatible drivers may interfere with the snipping tool. Interference from other applications: Other running applications may conflict with the Snipping Tool. Certificate has expired: An error during the upgrade process may cause this issu simple solution. These are suitable for most users and do not require any special technical knowledge. 1. Update Windows and Microsoft Store apps

In web development, we often need to use caching technology to improve website performance and response speed. Memcache is a popular caching technology that can cache any data type and supports high concurrency and high availability. This article will introduce how to use Memcache in PHP development and provide specific code examples. 1. Install Memcache To use Memcache, we first need to install the Memcache extension on the server. In CentOS operating system, you can use the following command

Part 1: Initial Troubleshooting Steps Checking Apple’s System Status: Before delving into complex solutions, let’s start with the basics. The problem may not lie with your device; Apple's servers may be down. Visit Apple's System Status page to see if the AppStore is working properly. If there's a problem, all you can do is wait for Apple to fix it. Check your internet connection: Make sure you have a stable internet connection as the "Unable to connect to AppStore" issue can sometimes be attributed to a poor connection. Try switching between Wi-Fi and mobile data or resetting network settings (General > Reset > Reset Network Settings > Settings). Update your iOS version:

Title: Example of using the Array.Sort function to sort an array in C# Text: In C#, array is a commonly used data structure, and it is often necessary to sort the array. C# provides the Array class, which has the Sort method to conveniently sort arrays. This article will demonstrate how to use the Array.Sort function in C# to sort an array and provide specific code examples. First, we need to understand the basic usage of the Array.Sort function. Array.So

In PHP development, using the Memcache caching system can greatly improve the efficiency of data reading and writing. Memcache is a memory-based caching system that can cache data in memory to avoid frequent reading and writing of the database. This article will introduce how to use Memcache in PHP for efficient data reading and writing operations, and provide specific code examples. 1. Install and configure Memcache First, you need to install the Memcache extension on the server. able to pass

Python return value return usage is that when the function executes the return statement, execution will stop immediately and the specified value will be returned to the place where the function was called. Detailed usage: 1. Return a single value; 2. Return multiple values; 3. Return a null value; 4. End the execution of the function early.
