CDbCache

优质
小牛编辑
128浏览
2023-12-01
所有包 | 属性 | 方法
system.caching
继承class CDbCache » CCache » CApplicationComponent » CComponent
实现ArrayAccess, ICache, IApplicationComponent
源自1.0
版本$Id: CDbCache.php 3515 2011-12-28 12:29:24Z mdomba $
源码framework/caching/CDbCache.php
CDbCache以将缓存数据存储在数据库中的方式实现一个缓存应用组件。

CDbCache在一个名为cacheTableName的数据表里存储缓存数据。 若该表不存在,它会被自动创建。 通过设置autoCreateCacheTable为false,你可以手动创建数据表。

CDbCache依靠PDO来访问数据库。 默认情况下,它会使用一个在应用程序runtime目录下的SQLite3数据库。 你也可以指定connectionID来使用 一个数据库应用组件访问数据库。

查看CCache操作手册以了解CDbCache支持的常用缓存操作。

公共属性

隐藏继承属性

属性类型描述定义在
autoCreateCacheTableboolean缓存数据表是否在不存在时自动创建。默认为true。 若你已经创建了数据表,建议将该属性设置为false以提高性能。CDbCache
behaviorsarray这个应用组件附加的行为。 这此行为将在应用组件调用init时附加在应用组件上。 请参照CModel::behaviors如何指定此属性值。CApplicationComponent
cacheTableNamestring存储缓存内容能够的数据表名字。默认为YiiCache。 注意,若autoCreateCacheTable为false且你希望 手动创建数据表,必须保证数据表结构如下:
(id CHAR(128) PRIMARY KEY, expire INTEGER, value BLOB)
注意,某些数据库管理系统可能不支持BLOB类型。这种情况下,用一个合适的 二进制数据类型(如MySQL的LONGBLOG、PostgreSQL的BYTEA)来代替BLOB。
CDbCache
connectionIDstringCDbConnection应用组件的ID。若没有设置, 将自动创建和使用SQLite3数据库。SQLite数据库文件 是protected/runtime/cache-YiiVersion.CDbCache
dbConnectionCDbConnection数据库连接实例CDbCache
gCProbabilityinteger缓存一块数据时,会进行垃圾 收集的概率(百万分之一计)。默认为100,意味着0.CDbCache
isInitializedboolean检查应用组件是否已经初始化。CApplicationComponent
keyPrefixstring加在每个缓存键名前的字符串以保证键名是唯一的。默认值是application ID。CCache

公共方法

隐藏继承方法

方法描述定义在
__call()如果类中没有调的方法名,则调用这个方法。CComponent
__get()返回一个属性值、一个事件处理程序列表或一个行为名称。CComponent
__isset()检查一个属性是否为null。CComponent
__set()设置一个组件的属性值。CComponent
__unset()设置一个组件的属性为null。CComponent
add()仅仅在甄别缓存值的键名不存在的情况下,往缓存中存储值。CCache
asa()返回这个名字的行为对象。CComponent
attachBehavior()附加一个行为到组件。CComponent
attachBehaviors()附加一个行为列表到组件。CComponent
attachEventHandler()为事件附加一个事件处理程序。CComponent
canGetProperty()确定属性是否可读。CComponent
canSetProperty()确定属性是否可写。CComponent
delete()从缓存中删除指定键名对应的值CCache
detachBehavior()从组件中分离一个行为。CComponent
detachBehaviors()从组件中分离所有行为。CComponent
detachEventHandler()分离一个存在的事件处理程序。CComponent
disableBehavior()禁用一个附加行为。CComponent
disableBehaviors()禁用组件附加的所有行为。CComponent
enableBehavior()启用一个附加行为。CComponent
enableBehaviors()启用组件附加的所有行为。CComponent
evaluateExpression()计算一个PHP表达式,或根据组件上下文执行回调。CComponent
flush()删除所有缓存值。CCache
get()从缓存中检索一个匹配指定键名的值。CCache
getDbConnection()返回数据库连接实例CDbCache
getEventHandlers()返回一个事件的附加处理程序列表。CComponent
getGCProbability()返回缓存一块数据时,会进行垃圾 收集的概率(百万分之一计)。默认为100,意味着0.01%的概率。CDbCache
getIsInitialized()检查应用组件是否已经初始化。CApplicationComponent
hasEvent()确定一个事件是否定义。CComponent
hasEventHandler()检查事件是否有附加的处理程序。CComponent
hasProperty()确定属性是否被定义。CComponent
init()初始化应用程序组件。CDbCache
mget()从缓存中检索出多个匹配指定键名的值。CCache
offsetExists()返回指定键名的缓存条目是否存在。CCache
offsetGet()从缓存中检索一个匹配指定键名的值。CCache
offsetSet()往缓存中存储一个用键名区分的值。CCache
offsetUnset()从缓存中删除指定键名对应的值CCache
raiseEvent()发起一个事件。CComponent
set()根据一个用以甄别的键名往缓存中存储一个值。CCache
setDbConnection()设置缓存组件使用的数据库连接。CDbCache
setGCProbability()设置缓存一块数据时,会进行垃圾 收集的概率(百万分之一计)。默认为100,意味着0.01%的概率。 数值必须在0到1000000之间。0意味着不会执行垃圾收集。CDbCache

受保护方法

隐藏继承方法

方法描述定义在
addValue()仅仅在甄别缓存值的键名不存在的情况下,往缓存中存储值。CDbCache
createCacheTable()创建缓存数据表。CDbCache
deleteValue()从缓存中删除指定键名对应的值CDbCache
flushValues()删除所有缓存值。CDbCache
gc()删除过期数据。CDbCache
generateUniqueKey()CCache
getValue()从缓存中检索一个匹配指定键名的值。CDbCache
getValues()从缓存中检索出多个匹配指定键名的值。CDbCache
setValue()往缓存中存储一个用键名区分的值。CDbCache

属性详细

autoCreateCacheTable 属性 public boolean $autoCreateCacheTable;

缓存数据表是否在不存在时自动创建。默认为true。 若你已经创建了数据表,建议将该属性设置为false以提高性能。

参见

  • cacheTableName
cacheTableName 属性 public string $cacheTableName;

存储缓存内容能够的数据表名字。默认为YiiCache。 注意,若autoCreateCacheTable为false且你希望 手动创建数据表,必须保证数据表结构如下:

(id CHAR(128) PRIMARY KEY, expire INTEGER, value BLOB)
注意,某些数据库管理系统可能不支持BLOB类型。这种情况下,用一个合适的 二进制数据类型(如MySQL的LONGBLOG、PostgreSQL的BYTEA)来代替BLOB。

参见

  • autoCreateCacheTable
connectionID 属性 public string $connectionID;

CDbConnection应用组件的ID。若没有设置, 将自动创建和使用SQLite3数据库。SQLite数据库文件 是protected/runtime/cache-YiiVersion.db.

dbConnection 属性 public CDbConnection getDbConnection()
public void setDbConnection(CDbConnection $value)

数据库连接实例

gCProbability 属性 public integer getGCProbability()
public void setGCProbability(integer $value)

缓存一块数据时,会进行垃圾 收集的概率(百万分之一计)。默认为100,意味着0.01%的概率。

方法详细

addValue() 方法
protected boolean addValue(string $key, string $value, integer $expire)
$keystring用以甄别缓存值的键名
$valuestring要缓存的值
$expireinteger以秒为单位的数值,表示缓存的过期时间。为0则永不过期。
{return}boolean成功存储到缓存中则返回true,否则返回false
源码: framework/caching/CDbCache.php#256 (显示) protectedfunctionaddValue($key,$value,$expire)
{
if(!$this->_gced&&mt_rand(0,1000000)<$this->_gcProbability)
{
$this->gc();
$this->_gced=true;
}

if($expire>0)
$expire+=time();
else
$expire=0;
$sql="INSERTINTO{$this->cacheTableName}(id,expire,value)VALUES('$key',$expire,:value)";
try
{
$command=$this->getDbConnection()->createCommand($sql);
$command->bindValue(':value',$value,PDO::PARAM_LOB);
$command->execute();
returntrue;
}
catch(Exception$e)
{
returnfalse;
}
}

仅仅在甄别缓存值的键名不存在的情况下,往缓存中存储值。 这是在父类中定义的方法的具体实现。

createCacheTable() 方法
protected void createCacheTable(CDbConnection $db, string $tableName)
$dbCDbConnection数据库连接
$tableNamestring要创建的数据表名
源码: framework/caching/CDbCache.php#123 (显示) protectedfunctioncreateCacheTable($db,$tableName)
{
$driver=$db->getDriverName();
if($driver==='mysql')
$blob='LONGBLOB';
elseif($driver==='pgsql')
$blob='BYTEA';
else
$blob='BLOB';
$sql=<<<EOD
CREATETABLE$tableName
(
idCHAR(128)PRIMARYKEY,
expireINTEGER,
value$blob
)
EOD;
$db->createCommand($sql)->execute();
}

创建缓存数据表。

deleteValue() 方法
protected boolean deleteValue(string $key)
$keystring要删除值的键名
{return}boolean如果删除期间没有发生错误
源码: framework/caching/CDbCache.php#288 (显示) protectedfunctiondeleteValue($key)
{
$sql="DELETEFROM{$this->cacheTableName}WHEREid='$key'";
$this->getDbConnection()->createCommand($sql)->execute();
returntrue;
}

从缓存中删除指定键名对应的值 这是在父类中定义的方法的具体实现。

flushValues() 方法 (可用自 v1.1.5)
protected boolean flushValues()
{return}boolean如果清空操作成功执行。
源码: framework/caching/CDbCache.php#309 (显示) protectedfunctionflushValues()
{
$this->getDbConnection()->createCommand("DELETEFROM{$this->cacheTableName}")->execute();
returntrue;
}

删除所有缓存值。 这是在父类中定义的方法的具体实现。

gc() 方法
protected void gc()
源码: framework/caching/CDbCache.php#298 (显示) protectedfunctiongc()
{
$this->getDbConnection()->createCommand("DELETEFROM{$this->cacheTableName}WHEREexpire>0ANDexpire<".time())->execute();
}

删除过期数据。

getDbConnection() 方法
public CDbConnection getDbConnection()
{return}CDbConnection数据库连接实例
源码: framework/caching/CDbCache.php#147 (显示) publicfunctiongetDbConnection()
{
if($this->_db!==null)
return$this->_db;
elseif(($id=$this->connectionID)!==null)
{
if(($this->_db=Yii::app()->getComponent($id))instanceofCDbConnection)
return$this->_db;
else
thrownewCException(Yii::t('yii','CDbCache.connectionID"{id}"isinvalid.PleasemakesureitreferstotheIDofaCDbConnectionapplicationcomponent.',
array('{id}'=>$id)));
}
else
{
$dbFile=Yii::app()->getRuntimePath().DIRECTORY_SEPARATOR.'cache-'.Yii::getVersion().'.db';
return$this->_db=newCDbConnection('sqlite:'.$dbFile);
}
}
getGCProbability() 方法
public integer getGCProbability()
{return}integer缓存一块数据时,会进行垃圾 收集的概率(百万分之一计)。默认为100,意味着0.01%的概率。
源码: framework/caching/CDbCache.php#98 (显示) publicfunctiongetGCProbability()
{
return$this->_gcProbability;
}
getValue() 方法
protected string getValue(string $key)
$keystring用以甄别缓存值的唯一键名
{return}string缓存中存储的值,如果该值不存在或者已过期则返回false。
源码: framework/caching/CDbCache.php#182 (显示) protectedfunctiongetValue($key)
{
$time=time();
$sql="SELECTvalueFROM{$this->cacheTableName}WHEREid='$key'AND(expire=0ORexpire>$time)";
$db=$this->getDbConnection();
if($db->queryCachingDuration>0)
{
$duration=$db->queryCachingDuration;
$db->queryCachingDuration=0;
$result=$db->createCommand($sql)->queryScalar();
$db->queryCachingDuration=$duration;
return$result;
}
else
return$db->createCommand($sql)->queryScalar();
}

从缓存中检索一个匹配指定键名的值。 这是在父类中定义的方法的具体实现。

getValues() 方法
protected array getValues(array $keys)
$keysarray用以甄别缓存值的键名列表
{return}array以$keys为键名的缓存值列表
源码: framework/caching/CDbCache.php#204 (显示) protectedfunctiongetValues($keys)
{
if(empty($keys))
returnarray();

$ids=implode("','",$keys);
$time=time();
$sql="SELECTid,valueFROM{$this->cacheTableName}WHEREidIN('$ids')AND(expire=0ORexpire>$time)";

$db=$this->getDbConnection();
if($db->queryCachingDuration>0)
{
$duration=$db->queryCachingDuration;
$db->queryCachingDuration=0;
$rows=$db->createCommand($sql)->queryAll();
$db->queryCachingDuration=$duration;
}
else
$rows=$db->createCommand($sql)->queryAll();

$results=array();
foreach($keysas$key)
$results[$key]=false;
foreach($rowsas$row)
$results[$row['id']]=$results[$row['value']];
return$results;
}

从缓存中检索出多个匹配指定键名的值。

init() 方法
public void init()
源码: framework/caching/CDbCache.php#74 (显示) publicfunctioninit()
{
parent::init();

$db=$this->getDbConnection();
$db->setActive(true);
if($this->autoCreateCacheTable)
{
$sql="DELETEFROM{$this->cacheTableName}WHEREexpire>0ANDexpire<".time();
try
{
$db->createCommand($sql)->execute();
}
catch(Exception$e)
{
$this->createCacheTable($db,$this->cacheTableName);
}
}
}

初始化应用程序组件。

该方法在接口IApplicationComponent中有要求。 它确保缓存数据表已存在。 同时从缓存中删除过期其数据项。

setDbConnection() 方法 (可用自 v1.1.5)
public void setDbConnection(CDbConnection $value)
$valueCDbConnection数据库连接实例
源码: framework/caching/CDbCache.php#171 (显示) publicfunctionsetDbConnection($value)
{
$this->_db=$value;
}

设置缓存组件使用的数据库连接。

setGCProbability() 方法
public void setGCProbability(integer $value)
$valueinteger缓存一块数据时,会进行垃圾 收集的概率(百万分之一计)。默认为100,意味着0.01%的概率。 数值必须在0到1000000之间。0意味着不会执行垃圾收集。
源码: framework/caching/CDbCache.php#108 (显示) publicfunctionsetGCProbability($value)
{
$value=(int)$value;
if($value<0)
$value=0;
if($value>1000000)
$value=1000000;
$this->_gcProbability=$value;
}
setValue() 方法
protected boolean setValue(string $key, string $value, integer $expire)
$keystring用以甄别缓存值的键名
$valuestring要缓存的值
$expireinteger以秒为单位的数值,表示缓存的过期时间。为0则永不过期。
{return}boolean成功存储到缓存中则返回true,否则返回false
源码: framework/caching/CDbCache.php#241 (显示) protectedfunctionsetValue($key,$value,$expire)
{
$this->deleteValue($key);
return$this->addValue($key,$value,$expire);
}

往缓存中存储一个用键名区分的值。 这是在父类中定义的方法的具体实现。