/Backend/ThinkPHP/Lib/Think/Util/Cache/CacheDb.class.php
https://github.com/qhwang0427/backend_php · PHP · 205 lines · 92 code · 11 blank · 102 comment · 14 complexity · 626bac6397455c6e303e047946e292b5 MD5 · raw file
- <?php
- // +----------------------------------------------------------------------
- // | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2009 http://thinkphp.cn All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: liu21st <liu21st@gmail.com>
- // +----------------------------------------------------------------------
- // $Id$
- /**
- +------------------------------------------------------------------------------
- * 数据库类型缓存类
- CREATE TABLE THINK_CACHE (
- id int(11) unsigned NOT NULL auto_increment,
- cachekey varchar(255) NOT NULL,
- expire int(11) NOT NULL,
- data blob,
- datasize int(11),
- datacrc int(32),
- PRIMARY KEY (id)
- );
- +------------------------------------------------------------------------------
- * @category Think
- * @package Think
- * @subpackage Util
- * @author liu21st <liu21st@gmail.com>
- * @version $Id$
- +------------------------------------------------------------------------------
- */
- class CacheDb extends Cache
- {//类定义开始
- /**
- +----------------------------------------------------------
- * 缓存数据库对象 采用数据库方式有效
- +----------------------------------------------------------
- * @var string
- * @access protected
- +----------------------------------------------------------
- */
- var $db ;
- /**
- +----------------------------------------------------------
- * 架构函数
- +----------------------------------------------------------
- * @access public
- +----------------------------------------------------------
- */
- function __construct($options='')
- {
- if(empty($options)){
- $options= array
- (
- 'db' => C('DB_NAME'),
- 'table' => C('DATA_CACHE_TABLE'),
- 'expire' => C('DATA_CACHE_TIME'),
- );
- }
- $this->options = $options;
- import('Db');
- $this->db = DB::getInstance();
- $this->connected = is_resource($this->db);
- $this->type = strtoupper(substr(__CLASS__,6));
- }
- /**
- +----------------------------------------------------------
- * 是否连接
- +----------------------------------------------------------
- * @access private
- +----------------------------------------------------------
- * @return boolen
- +----------------------------------------------------------
- */
- private function isConnected()
- {
- return $this->connected;
- }
- /**
- +----------------------------------------------------------
- * 读取缓存
- +----------------------------------------------------------
- * @access public
- +----------------------------------------------------------
- * @param string $name 缓存变量名
- +----------------------------------------------------------
- * @return mixed
- +----------------------------------------------------------
- */
- public function get($name)
- {
- $name = addslashes($name);
- $this->Q(1);
- $result = $this->db->getRow('select `data`,`datacrc`,`datasize` from `'.$this->options['table'].'` where `cachekey`=\''.$name.'\' and (`expire` =-1 OR `expire`>'.time().') limit 0,1');
- if(false !== $result ) {
- if(is_object($result)) {
- $result = get_object_vars($result);
- }
- if(C('DATA_CACHE_CHECK')) {//开启数据校验
- if($result['datacrc'] != md5($result['data'])) {//校验错误
- return false;
- }
- }
- $content = $result['data'];
- if(C('DATA_CACHE_COMPRESS') && function_exists('gzcompress')) {
- //启用数据压缩
- $content = gzuncompress($content);
- }
- $content = unserialize($content);
- return $content;
- }
- else {
- return false;
- }
- }
- /**
- +----------------------------------------------------------
- * 写入缓存
- +----------------------------------------------------------
- * @access public
- +----------------------------------------------------------
- * @param string $name 缓存变量名
- * @param mixed $value 存储数据
- * @param integer $expire 有效时间(秒)
- +----------------------------------------------------------
- * @return boolen
- +----------------------------------------------------------
- */
- public function set($name, $value,$expireTime=0)
- {
- $data = serialize($value);
- $name = addslashes($name);
- $this->W(1);
- if( C('DATA_CACHE_COMPRESS') && function_exists('gzcompress')) {
- //数据压缩
- $data = gzcompress($data,3);
- }
- if(C('DATA_CACHE_CHECK')) {//开启数据校验
- $crc = md5($data);
- }else {
- $crc = '';
- }
- $expire = !empty($expireTime)? $expireTime : $this->options['expire'];
- $map = array();
- $map['cachekey'] = $name;
- $map['data'] = $data ;
- $map['datacrc'] = $crc;
- $map['expire'] = ($expire==-1)?-1: (time()+$expire) ;//缓存有效期为-1表示永久缓存
- $map['datasize'] = strlen($data);
- $result = $this->db->getRow('select `id` from `'.$this->options['table'].'` where `cachekey`=\''.$name.'\' limit 0,1');
- if(false !== $result ) {
- //更新记录
- $result = $this->db->save($map,$this->options['table'],'`cachekey`=\''.$name.'\'');
- }else {
- //新增记录
- $result = $this->db->add($map,$this->options['table']);
- }
- if($result) {
- return true;
- }else {
- return false;
- }
- }
- /**
- +----------------------------------------------------------
- * 删除缓存
- +----------------------------------------------------------
- * @access public
- +----------------------------------------------------------
- * @param string $name 缓存变量名
- +----------------------------------------------------------
- * @return boolen
- +----------------------------------------------------------
- */
- public function rm($name)
- {
- $name = addslashes($name);
- return $this->db->_execute('delete from `'.$this->options['table'].'` where `cachekey`=\''.$name.'\'');
- }
- /**
- +----------------------------------------------------------
- * 清除缓存
- +----------------------------------------------------------
- * @access public
- +----------------------------------------------------------
- * @return boolen
- +----------------------------------------------------------
- */
- public function clear()
- {
- return $this->db->_execute('truncate table `'.$this->options['table'].'`');
- }
- }//类定义结束
- ?>