增强 织梦DedeCMS“更新系统缓存”清理沉余缓存的 功能
我们使用织梦DedeCMS系统有很长一段时间后,不间断的在后台更新系统缓存的时候,有些缓存文件夹及缓存文件没有被清理,导致日积月累的垃圾缓存文件越来越多,可以以百千万计算,现在增强更新系统缓存功能清理沉余的缓存文件及文件夹。
主要增加清理以下缓存文件夹的功能:
datacache
data plcache
datasessions
打开后台文件:dede/sys_cache_up.php
找到
CheckPurview('sys_ArcBatch')
|
在其下一行 添加以下代码:
//清理缓存增加版
function clean_cachefiles( $path ){
$list = array();
foreach( glob( $path . '/*') as $item ){
if( is_dir( $item ) ){
$list = array_merge( $list , clean_cachefiles( $item ) );
}else{
$list[] = $item;
}
}
foreach( $list as $tmpfile ){
@unlink( $tmpfile );
}
return true;
}
|
//清理datacache
clean_cachefiles( "../data/cache" );
//清理datatplcache
clean_cachefiles( "../data/tplcache" );
//清理datasessions
clean_cachefiles( "../data/sessions" );
|
如此便可更加有效的清理系统缓存,在加这个功能之前,大家有没发现:你在添加 广告的时候,用的是JS 调用,但是你更改了广告,更新了缓存,广告依然没变,需要“一键更新”-->“更新全部”才可以。加了这个功能之后,点击“更新系统缓存”,然后在前台刷新一下页面就可以了!
(责任编辑:admin) |