您的位置:首页 > 编程语言 > PHP开发

[李景山php]thinkphp核心源码注释|Apc.class.php

2016-07-22 09:24 609 查看
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
namespace Think\Cache\Driver;
use Think\Cache;
defined('THINK_PATH') or exit();
/**
* Apc缓存驱动
*/
// 也可以做成 opcode 加速
class Apc extends Cache {

/**
* 架构函数
* @param array $options 缓存参数
* @access public
*/
// 伟大的 构造函数啊,
// 首先 查看 是否具备 构造当前的 可以执行的函数
// 配置通用的选项 前缀 长度 过期时间
public function __construct($options=array()) {
if(!function_exists('apc_cache_info')) {
E(L('_NOT_SUPPORT_').':Apc');
}
$this->options['prefix']    =   isset($options['prefix'])?  $options['prefix']  :   C('DATA_CACHE_PREFIX');
$this->options['length']    =   isset($options['length'])?  $options['length']  :   0;
$this->options['expire']    =   isset($options['expire'])?  $options['expire']  :   C('DATA_CACHE_TIME');
}

/**
* 读取缓存
* @access public
* @param string $name 缓存变量名
* @return mixed
*/
// 直接通过 官方文件返回啊,嘿嘿
public function get($name) {
N('cache_read',1);
return apc_fetch($this->options['prefix'].$name);
}

/**
* 写入缓存
* @access public
* @param string $name 缓存变量名
* @param mixed $value  存储数据
* @param integer $expire  有效时间(秒)
* @return boolean
*/
// 设置 缓存

public function set($name, $value, $expire = null) {
N('cache_write',1); // 类似于日志记录
if(is_null($expire)) { // 设置时间 为什么不用三元呢?老 了吧
$expire  =  $this->options['expire'];
}
$name   =   $this->options['prefix'].$name;
if($result = apc_store($name, $value, $expire)) {
if($this->options['length']>0) {
// 记录缓存队列
$this->queue($name);// 记录缓存队列
}
}
return $result;
}

/**
* 删除缓存
* @access public
* @param string $name 缓存变量名
* @return boolean
*/
// 函数 再封装
public function rm($name) {
return apc_delete($this->options['prefix'].$name);
}

/**
* 清除缓存
* @access public
* @return boolean
*/
// 函数再封装
public function clear() {
return apc_clear_cache();
}

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: