### 文件
libraries/Yf/Cache.php 负责初始化并存放所有的Cache类。
~~~
调用方法
1.缓存页面
$Cache = Yf_Cache::create('default');
$site_index_key = sprintf('%s|%s|%s', Yf_Registry::get('server_id'), 'site_index', isset($_COOKIE['sub_site_id']) ? $_COOKIE['sub_site_id'] : 0);
if (!$Cache->start($site_index_key))
{
//其他页面代码。。。
$Cache->_id = $site_index_key;
$Cache->end($site_index_key);
}
2.缓存数据
$cache_group = 'default';//配置信息中的缓存key
$Cache = Yf_Cache::create($cache_group);
$key = '';//缓存key
$data = '';//缓存数据
$Cache->save($data, $key);//保存缓存
$Cache->get($key,$cache_group);
底层实现
~~~
public $_cacheKeyPrefix = 'c|m|';
public $_cacheName = 'default';
public $_tableName = 'test';
public $_tablePrimaryKey = 'test_id';
public $_cacheFlag = false;
/**
* 取得
*
* @param array $id
*
* @return array $rows 信息
* @access protected
*/
protected function getCacheRow($id = null, &$need_cache_id_name)
{
fb($id);
$rows = array();
if (is_array($id)) {
if ($this->_cacheFlag) {
$Yf_Cache = Yf_Cache::create($this->_cacheName);
$cache_key = array();
$cache_key_index = array();
foreach ($id as $item) {
$cache_key[] = $this->_cacheKeyPrefix . $item;
$cache_key_index[$this->_cacheKeyPrefix . $item] = $item;
}
$rows_cache = array();
//fix file cache
$Yf_Registry = Yf_Registry::getInstance();
if (!isset($Yf_Registry['config_cache'][$this->_cacheName])) {
$this->_cacheName = 'default';
}
if (1 == $Yf_Registry['config_cache'][$this->_cacheName]['cacheType']) {
foreach ($cache_key as $key_id) {
$tmp_data = $Yf_Cache->get($key_id);
if (false === $tmp_data) {
} else {
$rows_cache[$key_id] = $tmp_data;
}
}
//end fix file cache
} else {
$rows_cache = $Yf_Cache->get($cache_key);
}
foreach ($cache_key as $val) {
if (!isset($rows_cache[$val])) {
array_push($need_cache_id_name, $cache_key_index[$val]);
} else {
$rows = $rows + (array)$rows_cache[$val];
}
}
}
}
//fb($rows, "getCacheRow(" . encode_json($id) . ", " . encode_json($need_cache_id_name) . ")");
return $rows;
}
/**
* 添加缓存,为多条记录
*
* @param array $rows_db
*
* @return array $rows 信息
* @access protected
*/
protected function setCacheRow($rows_db = null, $expire = null)
{
if ($this->_cacheFlag) {
if (false !== $rows_db) {
$Yf_Cache = Yf_Cache::create($this->_cacheName);
foreach ($rows_db as $key => $val) {
//fix file cache
$Yf_Registry = Yf_Registry::getInstance();
if (!isset($Yf_Registry['config_cache'][$this->_cacheName])) {
$this->_cacheName = 'default';
}
if (1 == $Yf_Registry['config_cache'][$this->_cacheName]['cacheType']) {
$Yf_Cache->save(array($key => $val), $this->_cacheKeyPrefix . $key);
} else {
$Yf_Cache->save(array($key => $val), $this->_cacheKeyPrefix . $key, null, 0, $expire);
}
//end fix file cache
/*
$Yf_Cache->save(array($key=>$val), $this->_cacheKeyPrefix . $key, null, 0, $expire);
//$this->setCache(array($key=>$val), $this->_cacheKeyPrefix . $key);
*/
}
}
}
}
/**
* 取得单个缓存
*
* @param int $id id
*
* @return array $rows 信息
* @access protected
*/
protected function getCache($id = null)
{
$rows = array();
if ($this->_cacheFlag) {
$Yf_Cache = Yf_Cache::create($this->_cacheName);
if ($id) {
if (is_array($id)) {
$cache_key = array();
foreach ($id as $k => $v) {
$cache_key[] = $this->_cacheKeyPrefix . $v;
}
} else {
$cache_key = $this->_cacheKeyPrefix . $id;
}
} else {
$cache_key = $this->_cacheKeyPrefix . 'all';
}
$rows = $Yf_Cache->get($cache_key);
}
fb($cache_key, 'getCache');
fb($rows);
return $rows;
}
/**
* 添加缓存,为单条记录
*
* @param array $rows_db
*
* @return array $rows 信息
* @access protected
*/
protected function setCache($rows_db, $key = null, $expire = null)
{
if ($this->_cacheFlag) {
if (false !== $rows_db) {
$Yf_Cache = Yf_Cache::create($this->_cacheName);
//fix file cache
$Yf_Registry = Yf_Registry::getInstance();
if (!isset($Yf_Registry['config_cache'][$this->_cacheName])) {
$this->_cacheName = 'default';
}
if (1 == $Yf_Registry['config_cache'][$this->_cacheName]['cacheType']) {
if ($key) {
return $Yf_Cache->save($rows_db, $this->_cacheKeyPrefix . $key);
} else {
return $Yf_Cache->save($rows_db, null);
}
} else {
if ($key) {
return $Yf_Cache->save($rows_db, $this->_cacheKeyPrefix . $key, null, 0, $expire);
} else {
return $Yf_Cache->save($rows_db, null, null, 0, $expire);
}
}
//end fix file cache
}
}
}
~~~
- 序言
- 系统要求
- 版本更新日志
- 远丰商城技术对接说明
- 开发指导
- 系统架构
- 负载集群
- 云存储
- 框架内容
- 基础
- 开发规范
- 目录结构
- 架构
- 架构总览
- 数据库
- 数据库连接
- 基本使用
- 缓存
- 配置
- 路由
- 数据字典
- ucenter
- shop
- paycenter
- ucenter_admin
- shop_admin
- paycenter_admin
- shop1
- shop2
- shop3
- 通讯内容
- 商家中心
- 顶部导航栏
- 店铺信息栏
- 店铺及商品提示栏
- 交易提示栏
- 销售情况统计栏
- 集群架构图
- 单品销量排行栏
- 店铺运营推广栏
- 平台联系方式栏
- 订单物流
- 商品
- 商品列表
- 商品详情
- 商品发布与编辑
- 分销商品
- 关联版式
- 商品规格
- 图片空间
- 淘宝导入
- 订单流程
- 交易订单
- 订单退款/退货
- 促销
- 团购管理
- 加价购
- 限时折扣
- 满即送
- 代金券管理
- 分销
- 店铺
- 店铺设置
- 自销产品供应商
- 实体店铺
- 品牌申请
- 店铺信息
- 消费者保障服务
- 门店账号
- 分销商--产品供应商
- 分销明细
- 批发市场
- 商家微信公众号
- 售后服务
- 咨询管理
- 投诉管理
- 退款管理
- 退货管理
- 杂项
- 远程上传图片
- 接口(废弃,参考最外层接口项)
- 接口说明
- 品牌
- 商品规格
- 商品类型
- 商品分类
- 商品
- 订单
- 商品/店铺收藏
- 足迹
- 退款及退货
- 商家店铺
- 会员
- 入驻协议
- 订单接口
- 商品接口
- 订单物流接口
- 商家中心接口
- 促销接口
- 快递鸟物流接口
- 代金券接口
- 首页版块
- 团购
- 平台红包
- 限时折扣接口
- 拼团接口
- wap首页模板
- JS
- 银联支付
- 多语言
- 商品评分
- 图片加载
- 买家申请退款退货
- 商家退款退货
- 平台退款退货
- 添加发票
- 提交订单
- 确认订单
- 运费销售区域
- 获取会员地址
- 充值
- 导出XLS
- 商城系统集成
- 多语言实现
- 三级分销推广链接发展推广员
- app.ini.php
- 去分销
- 版本更新
- 物流支持
- 运营人员建议
- 业务逻辑
- 统计结算
- 客服消息
- 账号
- 三级分销
- IM
- 配置
- 平台帐号
- 活动数据表说明
- 接口
- 数据库中间键
- MyCat的优势
- 概念说明
- Mycat的下载及安装
- 参数配置案列
- Mycat读写分离
- 基本命令
- 常见错误