vote up 4 vote down star
1

Consider the following code:

if (IsDebuggingEnabled) { 
   instance.Log(GetDetailedDebugInfo()); 
}

GetDetailedDebugInfo() may be an expensive method, so we only want to call it if we're running in debug mode.

Now, the cleaner alternative is to code something like this:

instance.Log(() => GetDetailedDebugInfo());

Where .Log() is defined such as:

public void Log(Func<string> getMessage)
{
    if (IsDebuggingEnabled) 
    {
        LogInternal(getMessage.Invoke());
    }
}

My concern is with performance, preliminary testing doesn't show the second case to be particularly more expensive, but I don't want to run into any surprises if load increases.

Oh, and please don't suggest conditional compilation because it doesn't apply to this case.

(P.S.: I wrote the code directly in the StackOverflow Ask a Question textarea so don't blame me if there are subtle bugs and it doesn't compile, you get the point :)

flag

80% accept rate
Easy enough to simulate increased load; you can set up a test case to run both options inside tight loops for a few tens of thousands of iterations and compare. – Dav Aug 13 at 0:39

8 Answers

vote up 4 vote down

No, it shouldn't have a bad performance. After all, you'll be calling it only in debug mode where performance is not at the forefront. Actually, you could remove the lambda and just pass the method name to remove the overhead of an unnecessary intermediate anonymous method.

Note that if you want to do this in Debug builds, you can add a [Conditional("DEBUG")] attribute to the log method.

link|flag
Er, what about the fact that lambda, whether called or not, captures variables, and therefore forces them to be hoisted from the stack onto heap? This can actually affect perf quite a bit, as JIT is much more vary of caching field values in registers, so it's likely to do extra memory loads & stores when variable is captured - and you will really notice the difference in a tight loop. – Pavel Minaev Aug 13 at 8:22
1  
@Pavel: In general, this is true. But for OP's purpose, there's no captured variable. – Mehrdad Afshari Aug 13 at 8:27
I mentioned that conditional compilation does NOT apply to this case. The code I wrote as a sample is just a simple test case, my production code is entirely unrelated to logging and debug mode - but should work in a similar way. – legenden Aug 13 at 10:36
@legenden: I mentioned that for the sake of completeness. The first paragraph of the answer applies anyway. – Mehrdad Afshari Aug 13 at 10:39
@Mehrad: It doesn't really apply, because I won't necessarily be calling it JUST in debug mode. Please make abstraction of what my little sample implies. In a real application the condition may not be "IsInDebugMode" but something entirely different which can depend on a multitude of factors - and can be True now, and False on the next call. – legenden Aug 13 at 15:38
show 1 more comment
vote up 3 vote down check

I was hoping for some documentation regarding performance in such cases, but it seems that all I got were suggestions on how to improve my code... No one seems to have read my P.S. - no points for you.

So I wrote a simple test case:

    public static bool IsDebuggingEnabled { get; set; }


    static void Main(string[] args)
    {
        for (int j = 0; j <= 10; j++)
        {
            Stopwatch sw = Stopwatch.StartNew();
            for (int i = 0; i <= 15000; i++)
            {
                Log(GetDebugMessage);
                if (i % 1000 == 0) IsDebuggingEnabled = !IsDebuggingEnabled;
            }
            sw.Stop();
            Console.WriteLine(sw.ElapsedMilliseconds);
        }

        Console.ReadLine();
        for (int j = 0; j <= 10; j++)
        {
            Stopwatch sw = Stopwatch.StartNew();
            for (int i = 0; i <= 15000; i++)
            {
                if (IsDebuggingEnabled) GetDebugMessage();
                if (i % 1000 == 0) IsDebuggingEnabled = !IsDebuggingEnabled;
            }
            sw.Stop();
            Console.WriteLine(sw.ElapsedMilliseconds);
        }
        Console.ReadLine();
    }

    public static string GetDebugMessage()
    {
        StringBuilder sb = new StringBuilder(100);
        Random rnd = new Random();
        for (int i = 0; i < 100; i++)
        {
            sb.Append(rnd.Next(100, 150));
        }
        return sb.ToString();
    }

    public static void Log(Func<string> getMessage)
    {
        if (IsDebuggingEnabled)
        {
            getMessage();
        }
    }

Timings seem to be exactly the same between the two versions. I get 145 ms in the first case, and 145 ms in the second case

Looks like I answered my own question.

link|flag
vote up 2 vote down

There is a difference in performance. How significant it is will depend on the rest of your code so I would recommend profiling before embarking on optimisations.

Having said that for your first example:

if (IsDebuggingEnabled) 
{ 
    instance.Log(GetDetailedDebugInfo()); 
}

If IsDebuggingEnabled is static readonly then the check will be jitted away as it knows it can never change. This means that the above sample will have zero performance impact if IsDebuggingEnabled is false, because after the JIT is done the code will be gone.

instance.Log(() => GetDetailedDebugInfo());

public void Log(Func<string> getMessage)
{
    if (IsDebuggingEnabled) 
    {
        LogInternal(getMessage.Invoke());
    }
}

The method will be called every time instance.Log is called. Which will be slower.

But before expending time with this micro optimization you should profile your application or run some performance tests to make sure this is actually a bottle neck in your application.

link|flag
vote up 1 vote down

You can also do this:

// no need for a lambda
instance.Log(GetDetailedDebugInfo)

// Using these instance methods on the logger
public void Log(Func<string> detailsProvider)
{
    if (!DebuggingEnabled)
        return;

    this.LogImpl(detailsProvider());
}

public void Log(string message)
{
    if (!DebuggingEnabled)
        return;

    this.LogImpl(message);
}

protected virtual void LogImpl(string message)
{
    ....
}
link|flag
vote up 0 vote down

Standard answers:

  • If you gotta do it, you gotta do it.
  • Loop it 10^9 times, look at a stopwatch, & that tells you how many nanoseconds it takes.
  • If your program is big, chances are you have bigger problems elsewhere.
link|flag
vote up 0 vote down

Call getMessage delegate directly instead of calling Invoke on it.

if(IsDebuggingEnabled)
{
  LogInternal(getMessage());
}

You should also add null check on getMessage.

link|flag
My initial comment included an incorrect statement saying that calling the delegate directly instead of calling Invoke on it would be faster. However, I was wrong and I removed that comment. I wrote a small console application where I invoked a delegate of type Func<string> both by directly and also by calling Invoke on it. I then looked at the generated IL with ildasm tool and the IL was the same for both calls: callvirt instance !0 class[System.Core]System.Func'1<string>::Invoke() – Mehmet Aras Aug 13 at 1:35
vote up -3 vote down

I believe delegates create a new thread, so you may be right about it increasing performance. Why not set up a test run like Dav suggested, and keep a close eye on the number of threads spawned by your app, you can use Process Explorer for that.

Hang on! I've been corrected! Delegates only use threads when you use 'BeginInvoke'... so my above comments don't apply to the way you're using them.

link|flag
8  
Your belief should be reconsidered. Delegares are completely unrelated to threads. – Mehrdad Afshari Aug 13 at 0:46
2  
Delegates can be used to easily do some multi-threaded operations. Perhaps this is where the confusion is coming from. – Rex M Aug 13 at 0:49
1  
Good catch guys! – Chris Aug 13 at 4:40
vote up -3 vote down

No, delegates enable you to call a synchronous method in an asynchronous manner. This can help make your program be more responsive since it's asynchronous.

http://msdn.microsoft.com/en-us/library/22t547yb.aspx

link|flag
-1 Delegates CAN be used to call methods asynchronously, but certainly don't have to be used in that manner. – akmad Aug 13 at 14:47

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.