-
PHP 数据库缓存Memcache操作类
操作类就是把一些常用的一系列的数据库或相关操作写在一个类中,这样调用时我们只要调用类文件,如果要执行相关操作就直接调用类文件中的方法函数就可以实现了,下面整理了一个Memcache数据缓存操作类库文件,希望对各位会有帮助了.
PHP 数据库缓存Memcache操作类代码如下:
- class memcachedInit {
- private $memcache;
- /**
- * Memcache缓存-设置缓存
- * 设置缓存key,value和缓存时间
- * @param string $key KEY值
- * @param string $value 值
- * @param string $time 缓存时间
- */
- public function set_cache($key, $value, $time = 0) {
- return $this->memcache->set($key, $value, false, $time);
- }
- /**
- * Memcache缓存-获取缓存
- * 通过KEY获取缓存数据
- * @param string $key KEY值
- */
- public function get_cache($key) {
- return $this->memcache->get($key);
- }
- /**
- * Memcache缓存-清除一个缓存
- * 从memcache中删除一条缓存
- * @param string $key KEY值
- */
- public function clear($key) {
- return $this->memcache->delete($key);
- }
- /**
- * Memcache缓存-清空所有缓存
- * 不建议使用该功能
- * @return
- */
- public function clear_all() {
- return $this->memcache->flush();
- }
- /**
- * 字段自增-用于记数
- * @param string $key KEY值
- * @param int $step 新增的step值
- */
- public function increment($key, $step = 1) {
- return $this->memcache->increment($key, (int) $step);
- }
- /**
- * 字段自减-用于记数
- * @param string $key KEY值
- * @param int $step 新增的step值
- */
- public function decrement($key, $step = 1) {
- return $this->memcache->decrement($key, (int) $step);
- }
- /**
- * 关闭Memcache链接
- */
- public function close() {
- return $this->memcache->close();
- }
- /**
- * 替换数据
- * @param string $key 期望被替换的数据
- * @param string $value 替换后的值
- * @param int $time 时间值
- * @param bool $flag 是否进行压缩
- */
- public function replace($key, $value, $time = 0, $flag = false) {
- return $this->memcache->replace($key, $value, false, $time);
- }
- /**
- * 获取Memcache的版本号
- */
- public function getVersion() {
- return $this->memcache->getVersion();
- }
- /**
- * 获取Memcache的状态数据
- */
- public function getStats() {
- return $this->memcache->getStats();
- }
- /**
- * Memcache缓存-设置链接服务器
- * 支持多MEMCACHE服务器
- * 配置文件中配置Memcache缓存服务器:
- * $InitPHP_conf['memcache'][0] = array('127.0.0.1', '11211');
- * @param array $servers 服务器数组-array(array('127.0.0.1', '11211'))
- */
- public function add_server($servers) {
- $this->memcache = new Memcache;
- if (!is_array($servers) || emptyempty($servers)) exit('memcache server is null!');//开源代码phpfensi.com
- foreach ($servers as $val) {
- $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
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式