首页 > CMS > 织梦DEDE > 正文

优化织梦CMS后台生成速度慢的方法

2024-07-12 08:28:04
字体:
来源:转载
供稿:网友

从dedecms官网论坛找到个合适的代码 

1 2 3 4 5 include/inc/inc_fun_SpGetArcList.php  for($i=0;$i<$ridnum;$i++){  if($tpsql=="") $tpsql .= " And ( (".TypeGetSunID($reids[$i],$dsql,'arc')." Or arc.typeid2='".$reids[$i]."') ";  else $tpsql .= " Or (".TypeGetSunID($reids[$i],$dsql,'arc')." Or arc.typeid2='".$reids[$i]."') ";  }

上面的这段注释掉,用下面的替换 

1 2 3 4 for($i=0;$i<$ridnum;$i++){  if($tpsql=="") $tpsql .= " And (".TypeGetSunID($reids[$i],$dsql,'arc');  else $tpsql .= " Or ".TypeGetSunID($reids[$i],$dsql,'arc');  }

速度快好几倍,原理就是,副栏目不用参与了,极大的提高了运行速度。 

不过如果大家的 副栏目 使用的比较多,不建议用。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表