最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
Smarty 缓存集合简单讲解
时间:2022-06-25 02:20:37 编辑:袖梨 来源:一聚教程网
You can do more elaborate grouping by setting up cache_id groups. This is accomplished by separating each sub-group with a vertical bar "|" in the cache_id value. You can have as many sub-groups as you like.
Example 14-9. cache_id groups
| 代码如下 | 复制代码 |
|
require('Smarty.class.php'); $smarty->caching = true; |
|
// clear all caches with "sports|basketball" as the first two cache_id groups
| 代码如下 | 复制代码 |
| $smarty->clear_cache(null,"sports|basketball"); | |
// clear all caches with "sports" as the first cache_id group. This would
// include "sports|basketball", or "sports|(anything)|(anything)|(anything)|..."
| 代码如下 | 复制代码 |
|
$smarty->clear_cache(null,"sports"); $smarty->display('index.tpl',"sports|basketball"); |
|
在不知如何清除 Smarty 中带 id 的缓存时,找到了手册中上面说明,可惜英文太差,不知所云。
在 csdn 中找到网友帖子,看完后恍然大悟。
就是在缓存页面的时候像这样:
| 代码如下 | 复制代码 |
| $smarty-> display( 'basic.tpl ', "groupxxx| ".$cache_id); | |
然后要清这个groupxxx组下的所有缓存,则像这样:
| 代码如下 | 复制代码 |
| $smarty-> clear_cache(null, "groupxxx "); | |
相关文章
- 5Project公测时间揭晓 5Project公测日期及最新消息 03-31
- 伊莫手游上线时间 伊莫手游正式上线日期一览 03-31
- 羞羞漫画-最新登录入口直达 03-31
- 代号前线补给凭证怎么获得 代号前线补给凭证全获取途径汇总 03-31
- 异环元素反应详解 异环元素反应机制与实战应用指南 03-31
- 逸剑风云决手机版 逸剑风云决移动版游戏介绍与特色玩法 03-31