我們正在努力創建一個新網站,當我在瀏覽器 ex:www.mywebsite.com上寫下我的網站鏈接時,等待時間有點高。減少網站等候時間
我已經看到了一些網站,有一個較低的等待時間,然後我的,是沒有辦法減少等待時間,也是我們正在使用的memcached的網站?
PS:idk究竟是怎麼叫的,但我看到它與螢火蟲,它說等待時間。
謝謝。
EDITED
這是我用來從數據庫中獲取數據的代碼:
function f3($id = '') {
$id = mysql_real_escape_string ($id);
$sql = 'SELECT id,post_title,post_content,post_date,post_status,term_taxonomy_id,object_id FROM wp_posts, wp_term_relationships WHERE term_taxonomy_id = 60 AND post_status = "publish" AND wp_term_relationships.object_id = id ORDER BY post_date DESC LIMIT 1 OFFSET 2';
$res = mysql_query($sql) or die (mysql_error());
if (mysql_num_rows($res) !=0):
$row = mysql_fetch_assoc($res);
$mycontent = $row['post_content'];
$mycontent = strip_tags($mycontent);
$mycontent = substr($mycontent,0,150);
$mycontent = preg_replace("/\[caption.*\[\/caption\]/", '', $mycontent);
$title = AvinD($row['post_title']);
$old_date = $row['post_date']; // returns Saturday, January 30 10 02:06:34
$old_date_timestamp = strtotime($old_date);
$new_date = date('d.m.Y H:i', $old_date_timestamp);
$first_img = '';
$my1content = AvinD($row['post_content']);
$output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $my1content, $matches);
$first_img = $matches [1] [0];
if(empty($first_img)){ //Defines a default image
$first_img = "/img/default.png";
}
echo '
'.$new_date.'
<a href="single.php?id='.$row['id'].'"> '.$title.' </a> </div>
<a href="single.php?id='.$row['id'].'"> <img src="timthumb.php?src='.$first_img.'&h=107&w=190amp;zc=1" alt="" /> </a> </div>
'.$mycontent.'
'; //echo
else:
echo 'Page dont exist';
endif;
} // end
您是否正在加載任何外部資源? (腳本,CSS,圖像等)如果是的話,那麼外部資源的主機很可能運行緩慢,而不是您的服務器。 –
有關一般建議,請查看[Page Speed](http://code.google.com/speed/page-speed/)和[YSlow](http://developer.yahoo.com/yslow/)。 –
打個比方:有些汽車加速時速達到100kmph,持續4秒,一些加速到10秒。你怎麼能解釋這一點,而不知道賽車使用的是哪輛車。 – zerkms