Home >Backend Development >PHP Tutorial >PHP MemCached Advanced Caching Application Code_PHP Tutorial

PHP MemCached Advanced Caching Application Code_PHP Tutorial

WBOY
WBOYOriginal
2016-07-13 09:54:46896browse

PHP MemCached advanced caching application code

Common methods of memcache

Memcache::add &md; ash; 添加一个值,如果已经存在,则返回false
Memcache::add Server — 添加一个可供使用的 服务器地址
Memcache::close — 关闭一个Memcache对象
Memcache::connect — 创建一个Memcache对象
Memcache::debug — 控制调试功能
Memcache::decrement — 对保存的某个key中的值进行减法操作
Memcache::delete — 删除一个key值
Memcache::flush — 清除所有缓存的数据
Memcache:: get — 获取一个key值
Memcache::getExtendedStats — 获取进程池中所有进程的运行系统统计
Memcache::getServerStatus — 获取运行服务器的参数
Memcache::getStats — 返回服务器的一些运行统计信息
Memcache::getVersion — 返回运行的Memcache的版本信息
Memcache::increment — 对保存的某个key中的值进行加法操作
Memcache::pconnect — 创建一个Memcache的持久连接对象
Memcache::replace — R对一个已有的key进行覆写操作
Memcache::set — 添加一个值,如果已经存在,则覆写
Memcache::setCompressThreshold — 对大于某一大小的数据进行压缩
Memcache::setServerParams — 在运行时修改服务器的参数

<!--?php
$memcache = new memcache;
$memcache--->connect(&#39;127.0.0.1&#39;, 11211) or die("连接失败");
$memcache->set(&#39;name&#39;, &#39;张三&#39;);
$val = $memcache->get(&#39;name&#39;);
?>


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/994955.htmlTechArticlePHP MemCached Advanced caching application code memcache common methods Memcache::add md; ash; Add a value if it already exists , then return falseMemcache::add Server adds a usable...
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