GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Avg load time of your pages? (https://gfy.com/showthread.php?t=871970)

scouser 11-27-2008 02:20 AM

Avg load time of your pages?
 
Hi,
What are your avg load times for your pages? And what is considered good?

(Using this --

Code:


$starttime = microtime();
$startarray = explode(" ", $starttime);
$starttime = $startarray[1] + $startarray[0];
...
content
...
$endtime = microtime();
$endarray = explode(" ", $endtime);
$endtime = $endarray[1] + $endarray[0];
$totaltime = $endtime - $starttime;
$totaltime = round($totaltime,5);
if ($totaltime>0) {
# save/display total time
}
else {
# negative time, due to splitting it (explode)
}

I am about 0.36s ... which seems quite slow to me? And that is an average - sometimes (quite rare though) its >1sec

If i turn off some database queries (just stats one) i knock off about 0.15s. And I've cached most things (that it makes sense to) to disk.


All times are GMT -7. The time now is 10:02 AM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123