
-----------------------------------
x-ecutioner
Mon Feb 23, 2009 8:36 pm

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

-----------------------------------
saltpro15
Mon Feb 23, 2009 9:02 pm

RE:most effecive method of recording execution time
-----------------------------------
put Time.Elapsed/1000

-----------------------------------
DanielG
Mon Feb 23, 2009 9:17 pm

RE:most effecive method of recording execution time
-----------------------------------
or just put Time.Elapsed

-----------------------------------
saltpro15
Mon Feb 23, 2009 9:21 pm

RE:most effecive method of recording execution time
-----------------------------------
true, I'm just in the habit of using /1000 thanks to DWITE :P

-----------------------------------
Tony
Mon Feb 23, 2009 9:22 pm

Re: most effecive method of recording execution time
-----------------------------------
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
