Re: Question about phpMyAdmin and statements
" ~40 seconds to run"
How did you timed it? using a timer class or something similar, or just measured the time from accessing that link to seeing the page displayed?
You need to consider (if the script runs on a remote server), the time for data transfer..
That difference from 1 to 3 seconds is the page loading time... and you have php code, besides mysql queries....
A raw time estimate for a script that takes more than 1 second to run:
$timeStart = time();
//.... code here
$timeEnd = time();
echo 'Loaded in: '.$timeEnd-$timeStart."s\n";
for a more accurate measuring use microtime() ....
http://php.net/microtime
Subject
Written By
Posted
Re: Question about phpMyAdmin and statements
August 24, 2005 08:56AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.