Computer Science Canada

most effecive method of recording execution time

Author:  x-ecutioner [ Mon Feb 23, 2009 8:36 pm ]
Post subject:  most effecive method of recording execution time

ive used cpu time and just the time function i believie
but the problem is it calculates the time it took me to fill out the get statement as well
what method do you guys use in order to determine how efficient ur scripts are?


thanks,

X

Author:  saltpro15 [ Mon Feb 23, 2009 9:02 pm ]
Post subject:  RE:most effecive method of recording execution time

put Time.Elapsed/1000

Author:  DanielG [ Mon Feb 23, 2009 9:17 pm ]
Post subject:  RE:most effecive method of recording execution time

or just put Time.Elapsed

Author:  saltpro15 [ Mon Feb 23, 2009 9:21 pm ]
Post subject:  RE:most effecive method of recording execution time

true, I'm just in the habit of using /1000 thanks to DWITE Razz

Author:  Tony [ Mon Feb 23, 2009 9:22 pm ]
Post subject:  Re: most effecive method of recording execution time

x-ecutioner @ Mon Feb 23, 2009 8:36 pm wrote:
what method do you guys use in order to determine how efficient ur scripts are?

Big O analysis Wink http://en.wikipedia.org/wiki/Big_O_notation


: