รบกวนหน่อยครับ ผมทดสอบใช้โปรแกรม web application (PHP) ของทางบริษัท แต่โปรแกรมอื่นไม่ช้า แต่ทำไมโปรแกรมที่ผมเขียนมันช้ามากเลยอ่ะครับ
ลองเข้าไปที่ server แล้วดู Process ขณะที่เราเรียกใช้งาน web application ที่พัฒนาขึ้นมาดูว่ามันใช้งานทรัพยากรมากน้อยแค่ไหน บางทีอาจจะเป็นที่ Process ของ ระบบเองครับต้องไล่ดู บางทีมันอาจจะมีการคิวรี่ข้อมูลเยอะจึงต้องใช้เวลาในการทำงานเยอะ บางทีถึงขั้น เมมโมรี่แคชไม่พอก็มีครับ ส่วนมากจะเกิดตอนออกรายงานครับ
Date :
2012-08-20 08:56:52
By :
Manussawin
ขอบคุณมากๆๆนะครับ เดี๋ยวผมลองทดสอบ แล้วจะแจ้งอีกทีนะครับ
Date :
2012-08-20 08:58:14
By :
softwarelp
เรื่องช้าดูหลายส่วนประกอบครับ ถ้าจะให้ง่ายใช้การ exit(); ไปเรื่อย ๆ ครับ ถ้าตรงไหนช้ามันจะโหลดตรงนั้นแหละครับ
Date :
2012-08-20 09:08:39
By :
mr.win
ขอบคุณครับพี่วิน เดี๋ยวผมลองทดสอบก่อนนะครับ
Date :
2012-08-20 09:42:18
By :
softwarelp
ยังไม่ได้เลยครับ ใช้ localhost ในเครื่องเร็วมาก แต่ลองใช้ใน host อืดมากเลยครับ แค่หน้า index นะครับ แทบไม่มีอะไรเลย มีแค่ include หน้า connection.php เข้ามา ยังช้าเลยครับ แต่โปรแกรม อื่นเร็ว ผม งง มากๆๆเลยครับ รบกวนช่วยให้คำปรึกษาด้วยนะครับ
Date :
2012-08-20 09:54:24
By :
softwarelp
ถ้ามีการใช้ session หรือป่าวครับ
ขอดู code หน้า index หน่อยครับ
Date :
2012-08-20 09:56:07
By :
nontadech
index.php
<?
include('connection.php');
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>บริษัท Greencorperate Thai จำกัด</title>
<link href="stylesheet.css" rel="stylesheet" type="text/css" />
<style type="text/css">
body {
background-image: url(IMG/cover_GC1.jpg);
}
</style>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<table width="350" border="0" align="center" cellpadding="2" cellspacing="2" class="box01" style="margin-top:200px">
<tr>
<th colspan="3" align="center"><img src="IMG/user_login.png" width="150" height="150" /></th>
</tr>
<tr>
<th colspan="3" bgcolor="#CCFF66" height="28px"><strong>เข้าสู่ระบบ</strong></th>
</tr>
<tr>
<th width="35%" align="right">รหัสเจ้าหน้าที่ :</th>
<td width="45%" align="left"><input type="text" name="staff_code" id="staff_code" /></td>
<td width="20%" rowspan="2" align="left"><input type="submit" name="login" id="login" value="LOG IN" style="height:60px"/></td>
</tr>
<tr>
<th align="right">รหัสผ่าน :</th>
<td align="left"><input type="password" name="staff_pass" id="staff_pass" /></td>
</tr>
<tr>
<th colspan="3" align="right"> </th>
</tr>
</table>
<?
if($_POST[login])
{
$login=mysql_query("select * from staff where staff_code = '$_POST[staff_code]' and staff_pass = '$_POST[staff_pass]' ");
$num = mysql_num_rows($login);
$view = mysql_fetch_array($login);
if($num==1)
{
echo "<script language=Javascript>window.location.href=\"home.php\";</script>";
$_SESSION[login_code] = $view[staff_code];
$_SESSION[login_name] = $view[staff_name];
}else{
echo "<script>alert('รหัสพนักงาน หรือ รหัสผ่านไม่ถูกต้อง')</script>";
}
}
///////////////////////// LOG OUT ////////////////////////////////
if($_GET['gologout'] == 'logout')
{
session_destroy();
echo "<script>window.location='index.php';</script>";
}
?>
</form>
</body>
</html>
connection.php
<?
@session_start();
@ob_start();
//////////localhost//////////
$host = "localhost";
$user = "root";
$pass = "4243";
$db = "reservecd";
/*
/////////////ftp/////////////////
$host = "192.168.2.251";
$user = "root";
$pass = "it470747";
$db = "reservecd";
*/
mysql_connect($host, $user, $pass) or die("ไม่สามารถติดต่อฐานข้อมูลได้");
mysql_select_db($db) or die("ไม่สามารถเลือกฐานข้อมูลได้");
date_default_timezone_set('Asia/Bangkok');
mysql_query("SET character_set_results=tis620");
mysql_query("SET character_set_client='tis620'");
mysql_query("SET character_set_connection='tis620'");
mysql_query("collation_connection = tis620_thai_ci");
mysql_query("collation_database = tis620_thai_ci");
mysql_query("collation_server = tis620_thai_ci");
?>
Date :
2012-08-20 10:03:11
By :
softwarelp
ผมว่า ลองปิด session_start();
แล้วเช็คความเร็ว
หรือ
ลองปิด mysql_connect();
แล้วเช็คความเร็ว
และข้อมูลในฐานข้อมูล มีกี่ row ครับ
Date :
2012-08-20 10:13:03
By :
nontadech
ข้อมูลในฐานข้อมูล มี 200 กว่าๆ เองครับ
Date :
2012-08-20 10:23:37
By :
softwarelp
วิธีเช็ค ความเร็วทำยังไงเหรอครับ
Date :
2012-08-20 10:24:09
By :
softwarelp
ตัว firefox มันมี firebug อยู่ สามารถตรวจสอบความเร็วได้
จริงมันสังเกตุเอาก็ได้ครับ ว่ามันเร็วขึ้นมั้ย จากเดิม
Date :
2012-08-20 10:27:30
By :
nontadech
ถ้าไม่มีการเชื่อมต่อกับฐานข้อมูล ก้อเร็วครับ แต่พอใส่ connect เข้าไป ก้อ อืดเหมือนเดิมครับ กว่าจะเข้าได้ก้อ ประมาณ 10 วิ ครับ
Date :
2012-08-20 10:28:47
By :
softwarelp
ตัวฐานข้อมูล กับ ตัว server อยู่เครื่องเดียวกันป่ะครับ
ปัญหาก็คือ การติดต่อ ฐานข้อมูลกับเครื่องเซิฟเวอร์
Date :
2012-08-20 10:47:46
By :
nontadech
อยู่เครื่องเดียวกันครับ แต่ผม งง นะครับว่า ทำไมโปรแกรมอื่นๆ ที่นักพัฒนาระบบคนเก่าเขาทำไว้ เร็วครับ แต่พอผมพัฒนาระบบใหม่เข้าไปกลับช้า งง มากๆๆ เลยครับ ยังงัยช่วยผมด้วยนะครับ ไม่งั้นผมโดนหัวหน้างานด่าเละแน่ๆ ^^ ยังงัยก้อขอบคุณมากครับ
Date :
2012-08-20 10:51:22
By :
softwarelp
Code (PHP)
$host = "127.0.0.1";
ลองดูครับ
Date :
2012-08-20 11:08:47
By :
nontadech
Load balance : Server 04