Yii Framework v1.1.10 类参考
CFileCache
包 | system.caching |
---|---|
继承 | class CFileCache » CCache » CApplicationComponent » CComponent |
实现 | ArrayAccess, ICache, IApplicationComponent |
版本 | $Id: CFileCache.php 3515 2011-12-28 12:29:24Z mdomba $ |
源码 | framework/caching/CFileCache.php |
CFileCache提供了一个基于文件的缓存机制。
CFileCache将每个缓存数据存储在独立的文件里, 文件位于cachePath目录,默认是protected/runtime/cache CFileCache会自动执行垃圾收集以删除过期缓存文件。
查看CCache操作手册以了解CFileCache支持的常用缓存操作。
CFileCache将每个缓存数据存储在独立的文件里, 文件位于cachePath目录,默认是protected/runtime/cache CFileCache会自动执行垃圾收集以删除过期缓存文件。
查看CCache操作手册以了解CFileCache支持的常用缓存操作。
公共属性
属性 | 类型 | 描述 | 定义在 |
---|---|---|---|
behaviors | array | 这个应用组件附加的行为。 这此行为将在应用组件调用init时附加在应用组件上。 请参照CModel::behaviors如何指定此属性值。 | CApplicationComponent |
cacheFileSuffix | string | 缓存文件后缀,默认是. | CFileCache |
cachePath | string | 存储缓存文件的目录。默认是null,即使用 protected/runtime/cache目录。 | CFileCache |
directoryLevel | integer | 存储缓存文件的子目录级别。默认是0, 即不使用子目录。若系统的缓存文件数目巨大(1万以上), 你可能需要将该值设置为1或者2以避免文件系统超过负担。 这个属性的值应不超过16(建议小于3)。 | CFileCache |
gCProbability | integer | 缓存一块数据时,会进行垃圾 收集的概率(百万分之一计)。默认为100,意味着0. | CFileCache |
isInitialized | boolean | 检查应用组件是否已经初始化。 | CApplicationComponent |
keyPrefix | string | 加在每个缓存键名前的字符串以保证键名是唯一的。默认值是application ID。 | CCache |
公共方法
受保护方法
方法 | 描述 | 定义在 |
---|---|---|
addValue() | 仅仅在甄别缓存值的键名不存在的情况下,往缓存中存储值。 | CFileCache |
deleteValue() | 从缓存中删除指定键名对应的值 | CFileCache |
flushValues() | 删除所有缓存值。 | CFileCache |
generateUniqueKey() | CCache | |
getCacheFile() | 根据键名返回缓存文件路径 | CFileCache |
getValue() | 从缓存中检索一个匹配指定键名的值。 | CFileCache |
getValues() | 从缓存中检索出多个匹配指定键名的值。 | CCache |
setValue() | 往缓存中存储一个用键名区分的值。 | CFileCache |
属性详细
cacheFileSuffix
属性
public string $cacheFileSuffix;
缓存文件后缀,默认是.bin。
cachePath
属性
public string $cachePath;
存储缓存文件的目录。默认是null,即使用 protected/runtime/cache目录。
directoryLevel
属性
public integer $directoryLevel;
存储缓存文件的子目录级别。默认是0, 即不使用子目录。若系统的缓存文件数目巨大(1万以上), 你可能需要将该值设置为1或者2以避免文件系统超过负担。 这个属性的值应不超过16(建议小于3)。
gCProbability
属性
缓存一块数据时,会进行垃圾 收集的概率(百万分之一计)。默认为100,意味着0.01%的概率。
方法详细
addValue()
方法
protected boolean addValue(string $key, string $value, integer $expire)
| ||
$key | string | 用以甄别缓存值的键名 |
$value | string | 要缓存的值 |
$expire | integer | 以秒为单位的数值,表示缓存的过期时间。为0则永不过期。 |
{return} | boolean | 成功存储到缓存中则返回true,否则返回false |
源码: framework/caching/CFileCache.php#158 (显示)
protected function addValue($key,$value,$expire)
{
$cacheFile=$this->getCacheFile($key);
if(@filemtime($cacheFile)>time())
return false;
return $this->setValue($key,$value,$expire);
}
仅仅在甄别缓存值的键名不存在的情况下,往缓存中存储值。 这是在父类中定义的方法的具体实现。
deleteValue()
方法
protected boolean deleteValue(string $key)
| ||
$key | string | 要删除值的键名 |
{return} | boolean | 如果删除期间没有发生错误 |
源码: framework/caching/CFileCache.php#172 (显示)
protected function deleteValue($key)
{
$cacheFile=$this->getCacheFile($key);
return @unlink($cacheFile);
}
从缓存中删除指定键名对应的值 这是在父类中定义的方法的具体实现。
flushValues()
方法
(可用自 v1.1.5)
protected boolean flushValues()
| ||
{return} | boolean | 如果清空操作成功执行。 |
源码: framework/caching/CFileCache.php#94 (显示)
protected function flushValues()
{
$this->gc(false);
return true;
}
删除所有缓存值。 这是在父类中定义的方法的具体实现。
gc()
方法
public void gc(boolean $expiredOnly=true, string $path=NULL)
| ||
$expiredOnly | boolean | 是否只删除过期缓存文件。若为false,则所有在目录cachePath下的文件会被删除。 |
$path | string | 要删除的路径。若为null,它会被设成cachePath。 |
源码: framework/caching/CFileCache.php#204 (显示)
public function gc($expiredOnly=true,$path=null)
{
if($path===null)
$path=$this->cachePath;
if(($handle=opendir($path))===false)
return;
while(($file=readdir($handle))!==false)
{
if($file[0]==='.')
continue;
$fullPath=$path.DIRECTORY_SEPARATOR.$file;
if(is_dir($fullPath))
$this->gc($expiredOnly,$fullPath);
else if($expiredOnly && @filemtime($fullPath)<time() || !$expiredOnly)
@unlink($fullPath);
}
closedir($handle);
}
删除过期缓存文件。
getCacheFile()
方法
protected string getCacheFile(string $key)
| ||
$key | string | 缓存键 |
{return} | string | 缓存文件路径 |
源码: framework/caching/CFileCache.php#183 (显示)
protected function getCacheFile($key)
{
if($this->directoryLevel>0)
{
$base=$this->cachePath;
for($i=0;$i<$this->directoryLevel;++$i)
{
if(($prefix=substr($key,$i+$i,2))!==false)
$base.=DIRECTORY_SEPARATOR.$prefix;
}
return $base.DIRECTORY_SEPARATOR.$key.$this->cacheFileSuffix;
}
else
return $this->cachePath.DIRECTORY_SEPARATOR.$key.$this->cacheFileSuffix;
}
根据键名返回缓存文件路径
getGCProbability()
方法
public integer getGCProbability()
| ||
{return} | integer | 缓存一块数据时,会进行垃圾 收集的概率(百万分之一计)。默认为100,意味着0.01%的概率。 |
源码: framework/caching/CFileCache.php#68 (显示)
public function getGCProbability()
{
return $this->_gcProbability;
}
getValue()
方法
protected string getValue(string $key)
| ||
$key | string | 用以甄别缓存值的唯一键名 |
{return} | string | 缓存中存储的值,如果该值不存在或者已过期则返回false。 |
源码: framework/caching/CFileCache.php#106 (显示)
protected function getValue($key)
{
$cacheFile=$this->getCacheFile($key);
if(($time=@filemtime($cacheFile))>time())
return @file_get_contents($cacheFile);
else if($time>0)
@unlink($cacheFile);
return false;
}
从缓存中检索一个匹配指定键名的值。 这是在父类中定义的方法的具体实现。
init()
方法
public void init()
|
源码: framework/caching/CFileCache.php#55 (显示)
public function init()
{
parent::init();
if($this->cachePath===null)
$this->cachePath=Yii::app()->getRuntimePath().DIRECTORY_SEPARATOR.'cache';
if(!is_dir($this->cachePath))
mkdir($this->cachePath,0777,true);
}
初始化这个应用程序组件。 该方法在接口IApplicationComponent中有要求。 它会检查memcache是否可用。
setGCProbability()
方法
public void setGCProbability(integer $value)
| ||
$value | integer | 缓存一块数据时,会进行垃圾 收集的概率(百万分之一计)。默认为100,意味着0.01%的概率。 数值必须在0到1000000之间。0意味着不会执行垃圾收集。 |
源码: framework/caching/CFileCache.php#78 (显示)
public function setGCProbability($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)
| ||
$key | string | 用以甄别缓存值的键名 |
$value | string | 要缓存的值 |
$expire | integer | 以秒为单位的数值,表示缓存的过期时间。为0则永不过期。 |
{return} | boolean | 成功存储到缓存中则返回true,否则返回false |
源码: framework/caching/CFileCache.php#125 (显示)
protected function setValue($key,$value,$expire)
{
if(!$this->_gced && mt_rand(0,1000000)<$this->_gcProbability)
{
$this->gc();
$this->_gced=true;
}
if($expire<=0)
$expire=31536000; // 1 year
$expire+=time();
$cacheFile=$this->getCacheFile($key);
if($this->directoryLevel>0)
@mkdir(dirname($cacheFile),0777,true);
if(@file_put_contents($cacheFile,$value,LOCK_EX)!==false)
{
@chmod($cacheFile,0777);
return @touch($cacheFile,$expire);
}
else
return false;
}
往缓存中存储一个用键名区分的值。 这是在父类中定义的方法的具体实现。