codecamp

Smarty成员变量:$caching

$caching

设置Smarty是否将模板的输出缓存到 $cache_dir里。 默认将设置成Smarty::CACHING_OFF。 如果你的模板每次都生成同样的内容, 建议开启$caching以得到更高的性能。

同个模板可以有多个缓存。

  • 常量值 Smarty::CACHING_LIFETIME_CURRENT 或 Smarty::CACHING_LIFETIME_SAVED 可以开启缓存。

  • Smarty::CACHING_LIFETIME_CURRENT 值设置Smarty将根据 $cache_lifetime 来判断缓存的过期。

  • Smarty::CACHING_LIFETIME_SAVED 值设置Smarty还是根据 $cache_lifetime 来判断缓存的有效时间,但你可以在调用fetching前, 使用 $cache_lifetime 来为特定的某个模板设置其过期时间。 参见isCached().

  • 当开启了$compile_check, 如果模板文件或配置文件有修改,那么缓存将重新生成。

  • 当开启了 $force_compile,缓存内容总是会重新生成。

参见 $cache_dir$cache_lifetime$cache_modified_checkis_cached() 和 缓存.

Smarty成员变量:$cache_modified_check
Smarty成员变量:$caching_type
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

I.Smarty基础

1.Smart是什么?

II.Smarty模板设计师篇

6.Smarty复合修饰器

9.Smarty配置文件

10.Smarty调试控制台

III. 程序开发者篇

11. Smarty字符集编码

12.Smarty常量

13.Smarty成员变量

14.Smarty成员方法

17.Smarty高级特性

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }