我们都知道如果DedeCMS网站数据量大了,那么DedeCMS生成静态页就会非常慢,需要很长的时间,这里,织梦技术研究中心就告诉大家一个加快DedeCMS生成静态速度的方法,具体方法如下:
第1步、找到并打开include/inc/inc_fun_SpGetArcList.php文件,在里面找到如下代码:
查看源码
打印代码查看帮助
1 |
for ($i=0;$i<$ridnum;$i++){ |
2 |
if ($tpsql== "" ) $tpsql .= " And ( (" .TypeGetSunID($reids[$i],$dsql, 'arc' ). " Or arc.typeid2='" .$reids[$i]. "') " ; |
3 |
else $tpsql .= " Or (" .TypeGetSunID($reids[$i],$dsql, 'arc' ). " Or arc.typeid2='" .$reids[$i]. "') " ; |
|
第2步、将上面的代码替换为如下代码:
1 |
for ($i=0;$i<$ridnum;$i++){ |
2 |
if ($tpsql== "" ) $tpsql .= " And (" .TypeGetSunID($reids[$i],$dsql, 'arc' ); |
3 |
else $tpsql .= " Or " .TypeGetSunID($reids[$i],$dsql, 'arc' ); |
|
到这里就完成了,其实上面的做法就是把关于判断文档副栏目的代码给删除了,这样就能提高好几倍运行速度。