What is the relationship between Time and Hitcount?
ngajjar
Posts: 11
For example for Fn A
Time (in ms) = 5
HitCount = 30
Does that mean total time taken by Fn A for all 30 execution is 5 ms OR
Is A taking average 5 ms for each execution and hence total time spent in A is 5x30 = 150 ms
Thanks
-nilesh
Time (in ms) = 5
HitCount = 30
Does that mean total time taken by Fn A for all 30 execution is 5 ms OR
Is A taking average 5 ms for each execution and hence total time spent in A is 5x30 = 150 ms
Thanks
-nilesh
Comments
The first statement is true. The time shown is the total time across all invocations for that method.