我發(fā)現(xiàn)文件緩存這里,即使我的文件沒有發(fā)生變化,但是過了一定的時(shí)間可能是十幾秒,頁面也會發(fā)生變化,是有默認(rèn)的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();
}
?>
2017-06-29
對,duration默認(rèn)為60秒,不設(shè)置的話就是60秒后會重新緩存當(dāng)前的內(nèi)容
2022-03-29