VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > PHP >
  • PHP 数据库缓存Memcache操作类

操作类就是把一些常用的一系列的数据库或相关操作写在一个类中,这样调用时我们只要调用类文件,如果要执行相关操作就直接调用类文件中的方法函数就可以实现了,下面整理了一个Memcache数据缓存操作类库文件,希望对各位会有帮助了.

PHP 数据库缓存Memcache操作类代码如下:

  1. class memcachedInit { 
  2. private $memcache
  3. /** 
  4.  * Memcache缓存-设置缓存 
  5.  * 设置缓存key,value和缓存时间 
  6.  * @param  string $key   KEY值 
  7.  * @param  string $value 值 
  8.  * @param  string $time  缓存时间 
  9.  */ 
  10. public function set_cache($key$value$time = 0) {  
  11. return $this->memcache->set($key$value, false, $time); 
  12. /** 
  13.  * Memcache缓存-获取缓存 
  14.  * 通过KEY获取缓存数据 
  15.  * @param  string $key   KEY值 
  16.  */ 
  17. public function get_cache($key) { 
  18. return $this->memcache->get($key); 
  19. /** 
  20.  * Memcache缓存-清除一个缓存 
  21.  * 从memcache中删除一条缓存 
  22.  * @param  string $key   KEY值 
  23.  */ 
  24. public function clear($key) { 
  25. return $this->memcache->delete($key); 
  26. /** 
  27.  * Memcache缓存-清空所有缓存 
  28.  * 不建议使用该功能 
  29.  * @return 
  30.  */ 
  31. public function clear_all() { 
  32. return $this->memcache->flush(); 
  33. /** 
  34.  * 字段自增-用于记数 
  35.  * @param string $key  KEY值 
  36.  * @param int    $step 新增的step值 
  37.  */ 
  38. public function  increment($key$step = 1) { 
  39. return $this->memcache->increment($key, (int) $step); 
  40. /** 
  41.  * 字段自减-用于记数 
  42.  * @param string $key  KEY值 
  43.  * @param int    $step 新增的step值 
  44.  */ 
  45. public function decrement($key$step = 1) { 
  46. return $this->memcache->decrement($key, (int) $step); 
  47. /** 
  48.  * 关闭Memcache链接 
  49.  */ 
  50. public function close() { 
  51. return $this->memcache->close(); 
  52. /** 
  53.  * 替换数据 
  54.  * @param string $key 期望被替换的数据 
  55.  * @param string $value 替换后的值 
  56.  * @param int    $time  时间值 
  57.  * @param bool   $flag  是否进行压缩 
  58.  */ 
  59. public function replace($key$value$time = 0, $flag = false) { 
  60. return $this->memcache->replace($key$value, false, $time); 
  61. /** 
  62.  * 获取Memcache的版本号 
  63.  */ 
  64. public function getVersion() { 
  65. return $this->memcache->getVersion(); 
  66. /** 
  67.  * 获取Memcache的状态数据 
  68.  */ 
  69. public function getStats() { 
  70. return $this->memcache->getStats(); 
  71. /** 
  72.  * Memcache缓存-设置链接服务器 
  73.  * 支持多MEMCACHE服务器 
  74.  * 配置文件中配置Memcache缓存服务器: 
  75.  * $InitPHP_conf['memcache'][0]   = array('127.0.0.1', '11211');   
  76.  * @param  array $servers 服务器数组-array(array('127.0.0.1', '11211')) 
  77.  */ 
  78. public function add_server($servers) { 
  79. $this->memcache = new Memcache; 
  80. if (!is_array($servers) || emptyempty($servers)) exit('memcache server is null!');//开源代码phpfensi.com 
  81. foreach ($servers as $val) { 
  82. $this->memcache->addServer($val[0], $val[1]); 

使用方法:

$newclass = new memcachedInit();

$newclass->getVersion() //获取版本号

$newclass->close() //关闭Memcache链接

$newclass->clear($key) //从memcache中删除一条缓存 

$newclass->get_cache($key) //通过KEY获取缓存数据

上面就简单介绍了它的使用方法了,其实还有很多在这里我就不介绍了呀.

总结:这个只是一个最基于的Memcache缓存操作类了,比起像数据库缓存类操作会更好更复杂了,希望例子能帮助到各位朋友.

 

出处:http://www.phpfensi.com/php/20140910/5192.html


相关教程