[제나플러스] 100만건이 넘는 데이터의 카운트를 조정하려할때 > 팁앤테크

본문 바로가기
사이트 내 전체검색

팁앤테크

[제나플러스] 100만건이 넘는 데이터의 카운트를 조정하려할때

페이지 정보

profile_image
작성자 제로
댓글 0건 조회 73,409회 작성일 11-10-04 11:34

본문

그누보드 게시판 관리자페이지에 보면,
해당게시판의 카운트를 조절하는 부분이 있습니다.
기존방식으로 하면 다소 느릴 수 있는 것을 최적화 해보았습니다.
 
파일 : /adm/board_form_update.php
라인 : 207 라인근처 ( // 글수 조정 ) 주석 아래입니다.
 
 변경전
 // 글수 조정
    if ($proc_count) {
        // 원글을 얻습니다.
        $sql = " select wr_id from $g4[write_prefix]$bo_table where wr_is_comment = 0 ";
        $result = sql_query($sql);
        for ($i=0; $row=sql_fetch_array($result); $i++) {
   // 코멘트수를 얻습니다.
            $sql2 = sql_query(" select count(*) as cnt from $g4[write_prefix]$bo_table where wr_parent = '$row[wr_id]' and wr_is_comment = 1 ");
            $row2 = sql_fetch_array($sql2);
            sql_query(" update $g4[write_prefix]$bo_table set wr_comment = '$row2[cnt]' where wr_id = '$row[wr_id]' ");
   echo ".";
   if ($i%50==0) { echo "<br/>";  flush(); }
        }
  mysql_free_result($result);
 }
 
 
 
변경후
 // 글수 조정
    if ($proc_count) {
        // 원글을 얻습니다.
        $sql = " select a.wr_id,count(b.wr_parent) as cnt from $g4[write_prefix]$bo_table a, $g4[write_prefix]$bo_table b where a.wr_id=b.wr_parent and a.wr_is_comment=0 group by a.wr_id desc ";
        $result = sql_query($sql);
        for ($i=0; $row=sql_fetch_array($result); $i++) {
   
        sql_query(" update $g4[write_prefix]$bo_table set wr_comment = '$row[cnt]' where wr_id = '$row[wr_id]' ");
   echo ".";
   if ($i%50==0) { echo "<br/>";  flush(); }
        }
  mysql_free_result($result);
 }

댓글목록

등록된 댓글이 없습니다.

Total 779건 12 페이지
  • RSS
팁앤테크 목록
번호 제목 글쓴이 조회 날짜
504 제로 87063 12-08
503 제로 86509 11-17
502 제로 89045 11-12
501 제로 89651 11-07
500 제로 70707 11-01
499 제로 76472 10-13
열람중 제로 73410 10-04
497 제로 92707 09-27
496 제로 100988 09-23
495 제로 82979 09-19
494 제로 70248 09-19
493 제로 63677 09-14
492 제로 56293 09-12
491 제로 60982 09-03
490 제로 58018 09-03
489 제로 51913 09-02
488 제로 91434 08-06
487 제로 93658 08-06
486 제로 94158 07-29
485 제로 96727 07-28
484 제로 93624 07-22
483 제로 90599 07-22
482 제로 102623 07-22
481 제로 57593 07-20
480 제로 90357 07-13

검색

회원로그인

회원가입

사이트 정보

株式会社YHPLUS / 대표 : ZERO
〒140-0011 東京都品川区東大井2-5-9-203
050-5470-4714
오픈카카오톡 (YHPLUS) :
https://open.kakao.com/o/slfDj15d

접속자집계

오늘
4,816
어제
25,212
최대
431,155
전체
6,730,068
Copyright (c) 株式会社YHPLUS. All rights reserved.