On 11/22/14 10:23 AM, Warren Samples wrote:
On 11/21/2014 01:56 PM, Phil Davis wrote:
I'm glad it isn't just me:
http://quality.runrev.com/show_bug.cgi?id=13983

Phil Davis


Phil,

Your desktop utility shows a difference of about 8 to 10 times using your URLs and about 4 times using mine when run under 6.6.2. Opening the URLs in a browser continues to show a significant difference, but it's hard to quantify. Could you put a timer in the scripts themselves?

New URLs:
http://ctrainweb.com/test3.lc
http://support.nweta.com/test3.lc

Very interesting! The scripts run quite speedily on both servers.

Also, it seems probable from how they display in the utility and the browser that the scripts are not quite identical, with the one at <http://ctrainweb.com/test2.lc> not converting 'CR' to '<br>' as does (apparently) the other one. However doubtful it might be that this has serious impact, it would be best ensure they are identical.

Done. Here is the 'test3.lc' script:
--- start ---
<?lc
put the long seconds into tStart
put tStart into tStart2
put "LC version" && the version & CR & "SYSTEM VERSION" && the systemVersion & CR & the time & CR after tOutput
repeat with x = 1 to 3
    put x & CR after tOutput
end repeat
put CR
put the keys of $_SERVER into tList
sort lines of tList
repeat for each line tKey in tList
    if $_SERVER[tKey] is an array
    then put "[" & tKey & "]" & CR after tOutput
    else put tKey && "=" && $_SERVER[tKey] & CR after tOutput
end repeat
replace CR with "<BR>" in tOutput
put the long seconds - tStart && "secs<BR>"
put tOutput
put the long seconds - tStart2 && "secs<BR>"
?>
--- end ---

Phil


Warren

_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


--
Phil Davis


_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to