织梦DedeCMS更新系统缓存增加清理沉余缓存的功能

初心未变 技术杂谈评论15阅读模式

我们使用织梦DedeCMS系统有很长一段时间后,不间断的在后台更新系统缓存的时候,有些缓存文件夹及缓存文件没有被清理,导致日积月累的垃圾缓存文件越来越多,可以以百千万计算,现在增强更新系统缓存功能清理沉余的缓存文件及文件夹。

织梦DedeCMS更新系统缓存增加清理沉余缓存的功能-图片1

增强织梦DedeCMS“更新系统缓存”清理沉余缓存的功能

我们使用织梦DedeCMS系统有很长一段时间后,不间断的在后台更新系统缓存的时候,有些缓存文件夹及缓存文件没有被清理,导致日积月累的垃圾缓存文件越来越多,可以以百千万计算,现在增强更新系统缓存功能清理沉余的缓存文件及文件夹。

织梦DedeCMS更新系统缓存增加清理沉余缓存的功能-图片2

主要增加清理以下缓存文件夹的功能:

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;
}

找到if($uparc==1),在其上一行添加以下代码:

//清理datacache
clean_cachefiles( "http://blog.aftss.cn/a/data/cache" );
//清理datatplcache
clean_cachefiles( "http://blog.aftss.cn/a/data/tplcache" );
//清理datasessions
clean_cachefiles( "http://blog.aftss.cn/a/data/sessions" );

 

如此便可更加有效的清理系统缓存,每次更新缓存的时候会自动帮你清理缓存文件了!

 

 
初心未变
  • 本文由 初心未变 发表于 2024年 3月 14日 21:22:52
  • 转载请务必保留本文链接:https://blog.chunchunhd.com/2120.html
匿名

发表评论

匿名网友
:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:
确定

拖动滑块以完成验证