当前位置:首页 > PHP教程 > php类库 > 列表

PHP中Memcache操作类及用法实例

发布:smiling 来源: PHP粉丝网  添加日期:2021-05-03 16:07:20 浏览: 评论:0 

这篇文章主要介绍了PHP中Memcache操作类及用法,以实例形式详细分析了Memcache类连接数据库及进行缓存操作的具体用法,非常具有实用价值,需要的朋友可以参考下

本文实例讲述了PHP中Memcache操作类及用法。分享给大家供大家参考。具体分析如下:

  1. <?php  
  2.     /*  内存缓存管理  
  3.     */ 
  4. class Yc_Memcache{  
  5.  private $memcache=null;   
  6.    
  7.  public function __construct(){  
  8.  }  
  9.  /**  
  10.     * 连接数据库  
  11.     *  
  12.     * @param mixed $host  
  13.     * @param mixed $port  
  14.     * @param mixed $timeout  
  15.     */ 
  16.  public  function connect($host,$port=11211,$timeout=1){  
  17.   if(!function_exists(memcache_connect)){ return FALSE;}  
  18.   $this->memcache=@memcache_connect($host,$port,$timeout);  
  19.   if(emptyempty($this->memcache)){  
  20.    return FALSE;  
  21.   }else{  
  22.    return TRUE;  
  23.   }  
  24.  }  
  25.     /**  
  26.     * 存放值  
  27.     *  
  28.     * @param mixed $key  
  29.     * @param mixed $var  
  30.     * @param mixed $flag   默认为0不压缩  压缩状态填写:MEMCACHE_COMPRESSED  
  31.     * @param mixed $expire  默认缓存时间(单位秒)  
  32.     */ 
  33.  public function set($key,$var,$flag=0,$expire=10){  
  34.    
  35.   $f=@memcache_set($this->memcache,$key,$var,$flag,$expire);  
  36.   if(emptyempty($f)){  
  37.    return FALSE;  
  38.   }else{  
  39.    return TRUE;  
  40.   }  
  41.  }  
  42.     /**  
  43.     * 取出对应的key的value  
  44.     *  
  45.     * @param mixed $key  
  46.     * @param mixed $flags  
  47.     * $flags 如果此值为1表示经过序列化,  
  48.     * 但未经过压缩,2表明压缩而未序列化,  
  49.     * 3表明压缩并且序列化,0表明未经过压缩和序列化  
  50.     */ 
  51.  public function get($key,$flags=0){  
  52.   $val=@memcache_get($this->memcache,$key,$flags);  
  53.   return $val;  
  54.  }  
  55.  /**  
  56.     * 删除缓存的key  
  57.     *  
  58.     * @param mixed $key  
  59.     * @param mixed $timeout  
  60.     */ 
  61.  public function delete($key,$timeout=1){  
  62.   $flag=@memcache_delete($this->memcache,$key,$timeout);  
  63.   return $flag;  
  64.  }  
  65.     /**  
  66.     * 刷新缓存但不释放内存空间  
  67.     *  
  68.     */ 
  69.  public function flush(){  
  70.   memcache_flush($this->memcache);  
  71.  }  
  72.     /**  
  73.     * 关闭内存连接  
  74.     *  
  75.     */ 
  76.  public function close(){  
  77.   memcache_close($this->memcache);  
  78.  }  
  79.     /**  
  80.     * 替换对应key的value  
  81.     *  
  82.     * @param mixed $key  
  83.     * @param mixed $var  
  84.     * @param mixed $flag  
  85.     * @param mixed $expire  
  86.     */ 
  87.  public function replace($key,$var,$flag=0,$expire=1){  
  88.   $f=memcache_replace($this->memcache,$key,$var,$flag,$expire);  
  89.   return $f;  
  90.  }  
  91.     /**  
  92.     * 开启大值自动压缩  
  93.     *  
  94.     * @param mixed $threshold 单位b  
  95.     * @param mixed $min_saveings 默认值是0.2表示20%压缩率  
  96.     */ 
  97.  public function setCompressThreshold($threshold,$min_saveings=0.2){  
  98.   $f=@memcache_set_compress_threshold($this->memcache,$threshold,$min_saveings);  
  99.   return $f;  
  100.  }  
  101.     /**  
  102.     * 用于获取一个服务器的在线/离线状态  
  103.     *  
  104.     * @param mixed $host  
  105.     * @param mixed $port  
  106.     */ 
  107.  public function getServerStatus($host,$port=11211){  
  108.   $re=memcache_get_server_status($this->memcache,$host,$port);  
  109.   return $re;  
  110.  }  
  111.     /**  
  112.     * 缓存服务器池中所有服务器统计信息  
  113.     *  
  114.     * @param mixed $type 期望抓取的统计信息类型,可以使用的值有{reset, malloc, maps, cachedump, slabs, items, sizes}  
  115.     * @param mixed $slabid  cachedump命令会完全占用服务器通常用于 比较严格的调  
  116.     * @param mixed $limit 从服务端获取的实体条数  
  117.     */ 
  118.  public function getExtendedStats($type='',$slabid=0,$limit=100){  
  119.   $re=memcache_get_extended_stats($this->memcache,$type,$slabid,$limit); 
  120.   return $re;  
  121.  }  
  122. }  
  123.    
  124. /***********测试区域********************/ 
  125. $mem=new Yc_Memcache();  
  126.    
  127. $f=$mem->connect('125.64.41.138',12000);  
  128. var_dump($f);  
  129. if($f){  
  130. // $mem->setCompressThreshold(2000,0.2);  
  131.  $mem->set('key','hello',0,30);  
  132. //        var_dump($mem->delete('key1'));  
  133.  // $mem->flush();  
  134. // var_dump($mem->replace('hao','d'));  
  135. // echo $mem->get('key');  
  136.  echo $mem->getServerStatus('127.0.0.1',12000);  
  137.  echo $mem->get('key');  
  138.  echo '<pre>';  
  139.  print_r($mem->getExtendedStats());  
  140. }  
  141.    
  142. ?> 

希望本文所述对大家的PHP程序设计有所帮助。

Tags: Memcache PHP操作类

分享到: