PHP Memcached + APC + 文件缓存封装实现代码


Posted in PHP onMarch 11, 2010

使用方法:
Memcached

$cache = new Cache_MemCache(); 
$cache->addServer('www1'); 
$cache->addServer('www2',11211,20); // this server has double the memory, and gets double the weight 
$cache->addServer('www3',11211); 
// Store some data in the cache for 10 minutes 
$cache->store('my_key','foobar',600); 
// Get it out of the cache again 
echo($cache->fetch('my_key'));

文件缓存
$cache = new Cache_File(); 
$key = 'getUsers:selectAll'; 
// check if the data is not in the cache already 
if (!$data = $cache->fetch($key)) { 
// assuming there is a database connection 
$result = mysql_query("SELECT * FROM users"); 
$data = array(); 
// fetching all the data and putting it in an array 
while($row = mysql_fetch_assoc($result)) { $data[] = $row; } 
// Storing the data in the cache for 10 minutes 
$cache->store($key,$data,600); 
}

下载: class_cache3.php
<?php abstract class Cache_Abstract { 
abstract function fetch($key); 
abstract function store($key, $data, $ttl); 
abstract function delete($key); 
} 
class Cache_APC extends Cache_Abstract { 
function fetch($key) { 
return apc_fetch($key); 
} 
function store($key, $data, $ttl) { 
return apc_store($key, $data, $ttl); 
} 
function delete($key) { 
return apc_delete($key); 
} 
} 
class Cache_MemCache extends Cache_Abstract { 
public $connection; 
function __construct() { 
$this->connection = new MemCache; 
} 
function store($key, $data, $ttl) { 
return $this->connection->set($key, $data, 0, $ttl); 
} 
function fetch($key) { 
return $this->connection->get($key); 
} 
function delete($key) { 
return $this->connection->delete($key); 
} 
function addServer($host, $port = 11211, $weight = 10) { 
$this->connection->addServer($host, $port, true, $weight); 
} 
} 
class Cache_File extends Cache_Abstract { 
function store($key, $data, $ttl) { 
$h = fopen($this->getFileName($key), 'a+'); 
if (!$h) 
throw new Exception('Could not write to cache'); 
flock($h, LOCK_EX); 
fseek($h, 0); 
ftruncate($h, 0); 
$data = serialize(array(time() + $ttl, $data)); 
if (fwrite($h, $data) === false) { 
throw new Exception('Could not write to cache'); 
} 
fclose($h); 
} 
function fetch($key) { 
$filename = $this->getFileName($key); 
if (!file_exists($filename)) 
return false; 
$h = fopen($filename, 'r'); 
if (!$h) 
return false; 
flock($h, LOCK_SH); 
$data = file_get_contents($filename); 
fclose($h); 
$data = @ unserialize($data); 
if (!$data) { 
unlink($filename); 
return false; 
} 
if (time() > $data[0]) { 
unlink($filename); 
return false; 
} 
return $data[1]; 
} 
function delete($key) { 
$filename = $this->getFileName($key); 
if (file_exists($filename)) { 
return unlink($filename); 
} 
else { 
return false; 
} 
} 
private function getFileName($key) { 
return '/tmp/s_cache' . md5($key); 
} 
} 
?>
PHP 相关文章推荐
php购物车实现代码
Oct 10 PHP
PHP5函数小全(分享)
Jun 06 PHP
PHP统计nginx访问日志中的搜索引擎抓取404链接页面路径
Jun 30 PHP
PHP获取mysql数据表的字段名称和详细信息的方法
Sep 27 PHP
最准确的php截取字符串长度函数
Oct 29 PHP
ThinkPHP中order()使用方法详解
Apr 19 PHP
thinkPHP5.0框架配置格式、加载解析与读取方法
Mar 17 PHP
解决php 处理 form 表单提交多个 name 属性值相同的 input 标签问题
May 11 PHP
Thinkphp5结合layer弹窗定制操作结果页面
Jul 07 PHP
PHP中register_shutdown_function函数的基础介绍与用法详解
Nov 28 PHP
PHP实现数据四舍五入的方法小结【4种方法】
Mar 27 PHP
MacOS下PHP7.1升级到PHP7.4.15的方法
Feb 22 PHP
了解Joomla 这款来自国外的php网站管理系统
Mar 11 #PHP
PHP调用Twitter的RSS的实现代码
Mar 10 #PHP
PHP中include()与require()的区别说明
Mar 10 #PHP
PHP扩展编写点滴 技巧收集
Mar 09 #PHP
php 修改zen-cart下单和付款流程以防止漏单
Mar 08 #PHP
PHP 最大运行时间 max_execution_time修改方法
Mar 08 #PHP
php ss7.5的数据调用 (笔记)
Mar 08 #PHP
You might like
改德生G88 - 加装等响度低音提升电路
2021/03/02 无线电
ajax在joomla中的原生态应用代码
2012/07/19 PHP
php简单实现屏蔽指定ip段用户的访问
2015/04/29 PHP
php自动加载方式集合
2016/04/04 PHP
JavaScript改变HTML元素的样式改变CSS及元素属性
2013/11/12 Javascript
我的NodeJs学习小结(一)
2014/07/06 NodeJs
用console.table()调试javascript
2014/09/04 Javascript
Jquery解析Json格式数据过程代码
2014/10/17 Javascript
js的toLowerCase方法用法实例
2015/01/27 Javascript
jQuery实现仿微软首页感应鼠标变化滑动窗口效果
2015/10/08 Javascript
jQuery中事件与动画的总结分享
2016/05/24 Javascript
jQuery使用方法
2017/02/04 Javascript
JS动态生成年份和月份实例代码
2017/02/04 Javascript
基于JQuery的购物车添加删除以及结算功能示例
2017/03/08 Javascript
Vue中v-show添加表达式的问题(判断是否显示)
2018/03/26 Javascript
微信小程序下拉刷新PullDownRefresh的使用方法
2018/11/29 Javascript
js序列化和反序列化的使用讲解
2019/01/19 Javascript
200行HTML+JavaScript实现年会抽奖程序
2019/01/22 Javascript
微信小程序 wxParse插件显示视频问题
2019/09/27 Javascript
Django实现自定义404,500页面教程
2017/03/26 Python
利用python批量给云主机配置安全组的方法教程
2017/06/21 Python
Python内存管理方式和垃圾回收算法解析
2017/11/11 Python
Django网络框架之HelloDjango项目创建教程
2019/06/06 Python
新手入门Python编程的8个实用建议
2019/07/12 Python
HTML5 3D旋转相册的实现示例
2019/12/03 HTML / CSS
百联网上商城:i百联
2017/01/28 全球购物
中学家长会邀请函
2014/02/03 职场文书
触电现场处置方案
2014/05/14 职场文书
优秀毕业生求职信
2014/06/05 职场文书
学院党的群众路线教育实践活动第一阶段情况汇报
2014/10/25 职场文书
锦旗赠语
2015/06/23 职场文书
MySQL 8.0 驱动与阿里druid版本兼容问题解决
2021/07/01 MySQL
python周期任务调度工具Schedule使用详解
2021/11/23 Python
PostgreSQL并行计算算法及参数强制并行度设置方法
2022/04/07 PostgreSQL
Spring中bean集合注入的方法详解
2022/07/07 Java/Android
Python+pyaudio实现音频控制示例详解
2022/07/23 Python