php操作memcache缓存方法分享
发布:smiling 来源: PHP粉丝网 添加日期:2021-05-27 15:02:02 浏览: 评论:0
一般来说,如果并发量不大的情况,使不使用缓存技术并没有什么影响,但如果高并发的情况,使用缓存技术就显得很重要了,可以很好的减轻数据库和服务器的压力,当然解决高并发的技术有很多,这里只是以缓存的角度来说明使用memcache的便捷性和方便性,使用memcache的前提是需要在服务端先配置好memcahche的环境!确认memcahce可以正常连接之后就可以在程序使用了!
- <?php
- /**
- * Memcache缓存操作
- * @author hxm
- * @version 1.0
- * @since 2015.05.04
- */
- class MCache extends Object implements CacheFace
- {
- private $mem = null; //Mem对象
- private $sId = 1; //servier服务ID
- /**
- * 初始化Memcache
- *
- * @return Object
- */
- public function __construct()
- {
- if ( !class_exists('Memcache') )
- {
- throw new QException('PHP extension does not exist: Memcache');
- }
- $this->mem = new Memcache();
- }
- /**
- * 链接memcahce服务
- *
- * @access private
- * @param string $key 关键字
- * @param string $value 缓存内容
- * @return array
- */
- private function connect( $sid )
- {
- $file = $this->CacheFile();
- require $file;
- if(! isset($cache) )
- {
- throw new QException('缓存配置文件不存在'.$file);
- }
- $server = $cache[$this->cacheId];
- $sid = isset($sid) == 0 ? $this->sId : $sid;//memcache服务选择
- if ( ! $server[$sid])
- {
- throw new QException('当前操作的缓存服务器配置文件不存在');
- }
- $host = $server[$sid]['host'];
- $port = $server[$sid]['port'];
- try {
- $this->mem->connect( $host , $port );
- } catch (Exception $e) {
- exit('memecache连接失败,错误信息:'. $e->getMessage());
- }
- }
- /**
- * 写入缓存
- *
- * @access private
- * @param string $key 关键字
- * @param string $value 缓存内容
- * @return array
- */
- public function set( $key , $value , $sid , $expire = 0)
- {
- $data = $this->get($key , $sid); //如果已经存在key值
- if( $data )
- {
- return $this->mem->set( $key , $value ,MEMCACHE_COMPRESSED , $expire);
- } else {
- return $this->mem->add( $key , $value ,MEMCACHE_COMPRESSED , $expire);
- }
- }
- /**
- * 读取缓存
- *
- * @access private
- * @param string $key 关键字
- * @param int $sid 选择第几台memcache服务器
- * @return array
- */
- public function get( $key , $sid)
- {
- $this->connect( $sid );
- return $this->mem->get($key);
- }
- /**
- * 清洗(删除)已经存储的所有的元素
- *
- * @access private
- * @return array
- */
- public function flush()
- {
- $this->connect();
- return $this->mem->flush();
- }
- /**
- * 删除缓存
- *
- * @access private
- * @param string $key 关键字
- * @param int $sid 选择第几台memcache服务器
- * @return array
- */
- public function remove( $key , $sid)
- {
- $this->connect();
- return $this->mem->delete($key);
- }
- /**
- * 析构函数
- * 最后关闭memcache
- */
- public function __destruct()
- {
- /*if(! $this->mem)
- {
- $this->mem->close();
- }*/
- }
- }
Tags: memcache
- 上一篇:php操作redis缓存方法分享
- 下一篇:浅谈PHP中Stream(流)
相关文章
- ·php memcached 扩展 timeout 问题(2013-12-06)
- ·php中Memcached连接超时问题解决办法(2013-12-07)
- ·memcached启动和关闭的方法(2014-02-10)
- ·php memcache和memcached的区别(2014-02-21)
- ·PHP连接Memcache程序代码(2014-06-10)
- ·emlog中使用memcache缓存配置修改方法(2014-06-17)
- ·php memcached安装与使用(2014-08-05)
- ·Memcache php提高mysql负载有效方法(2014-08-18)
- ·php实现memcache缓存实例详解(2014-08-27)
- ·php MemCache内存缓存学习笔记(2014-08-27)
- ·memcache构建简单的内存消息队列(2014-08-27)
- ·解决memcache中使用session_start启动慢(2014-08-27)
- ·清除memcache中的缓存一些方法总结(2014-08-27)
- ·PHP memcache实现消息队列实例(2014-08-27)
- ·PHP利用memcache缓存技术简单介绍(2014-08-28)
- ·php内存缓存实现程序代码(2014-08-28)
推荐文章
热门文章
最新评论文章
- 写给考虑创业的年轻程序员(10)
- PHP新手上路(一)(7)
- 惹恼程序员的十件事(5)
- PHP邮件发送例子,已测试成功(5)
- 致初学者:PHP比ASP优秀的七个理由(4)
- PHP会被淘汰吗?(4)
- PHP新手上路(四)(4)
- 如何去学习PHP?(2)
- 简单入门级php分页代码(2)
- php中邮箱email 电话等格式的验证(2)