I am considering using something like StackFrame stackFrame = new StackFrame(1) to log the executing method, but I don't know about its performance implications. Is the stack trace something that is build anyway with each method call so performance should not be a concern or is it something that is only build when asked for it? Do you recommend against it in an application where performance is very important? If so, does that mean I should disable it for the release?
|
1
|
|
||||||||||||||||
|
|
|
edit: Some background We have a similar feature which is disabled 99% of the time; we were using an approach like:
It was simple, but regardless of whether or not tracing was enabled we were incurring the performance hit of using Reflection to lookup the method name. Our options were to either require more code in every method (and risk simple mistakes or refusal) or to switch to using Option A:
Option B:
We opted for Option B. It offers significant performance improvements over Option A when logging is disabled, 99% of the time and is very simple to implement. Here's an alteration of Michael's code, to display the cost / benefit of this approach
The Results:
|
||||||
|
|
|
A quick and naive test indicates that for performance-sensitive code, yes, you want to pay attention to this:
About 20 microseconds per generated frame, on my machine. Not a lot, but a measurable difference over a large number of iterations. Speaking to your later questions ("Should I disable StackFrame generation in my application?"), I'd suggest you analyze your application, do performance tests like the one I've done here, and see if the performance difference amounts to anything with your workload.
|
||||||||
|
|
|
From the MSDN documentation, it seems like StackFrames are being created all the time:
The constructor
Have you tried measuring how long it would take to create, say, 1 million of them? |
||||||
|
|
|
Out of interest: Why? If you only want the current method, then
seems better. Maybe not more performant (I didn't compare, but Reflection shows that GetCurrentMethod() does not simply create a StackFrame but does some "magic"), but clearer in it's intent. |
|||
