我发现文件缓存这里,即使我的文件没有发生变化,但是过了一定的时间可能是十几秒,页面也会发生变化,是有默认的duration吗?
<?php if ($this->beginCache('cache_div', ['dependency'=>$dependency])) {?>
<div id='cache_outer_div'>
<div> This is the outer div to be cached22</div>
<?php if($this->beginCache('cache_inner_div')) {?>
<div id='cache_inner_div'>This is the inner div to be cached</div>
<?php
$this->endCache();
}
?>
</div>
<?php
$this->endCache();
}
?>