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

PHP中Memcache操作类使用方法

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

Tags: Memcache操作类 PHP操作类

分享到: