Do I have to lock access to instance members?

Example:

public class HttpModule : IHttpModule
{
    //...

    Dictionary<int, int> foo;

    void UseFoo(int a, int b)
    {
        foo[a] = b;
    }
}
link|improve this question

71% accept rate
feedback

3 Answers

up vote 3 down vote accepted

It's not crystal clear to me so far from the MSDN documentation, but I found a forum post from someone who claims to know the answer. It sounds like you shouldn't expect bad stuff to happen with your implementation, but you should be aware that foo's state will not necessarily be shared across all results since your HttpModule will be created once per HttpApplication that IIS chooses to keep in its pool.

link|improve this answer
Yes, it reuses the instance among many different requests. But the question is whether it reuses the instance among different threads. – TN. Apr 11 '10 at 23:29
From what I can tell: Yes, but not at the same time. An HttpApplication seems to be assigned to a given request for the duration of that request. – sblom Apr 11 '10 at 23:34
Ok, thank you. I will wait until someone how knows that exactly confirm this, since I will use that code in production environment, and I will be hard to debug. – TN. Apr 12 '10 at 10:21
feedback

I recently found an article which touches on this question slightly: http://www.dominicpettifer.co.uk/Blog/41/ihttpmodule-gotchas---the-init---method-can-get-called-multiple-times

It doesn't mention threads, but only says that the worker process will

instantiate as many HttpApplication objects as it thinks it needs, then it'll pool them for performance reasons, reusing instances as new requests come in before sending them back into the pool.

Following the code in from the link, you can be sure that your init code is executed once in a thread-safe manner:

private static bool HasAppStarted = false; 
private readonly static object _syncObject = new object(); 

public void Init(HttpApplication context) 
{ 
    if (!HasAppStarted) 
    { 
        lock (_syncObject) 
        { 
            if (!HasAppStarted) 
            { 
                // Run application StartUp code here 

                HasAppStarted = true; 
            } 
        } 
    } 
}

I've been meaning to set up a test app to run this and test it, just to see if it's true, but I haven't had the time.

link|improve this answer
Thank you for your answer. This checks whether it is shared now. I need to know it exactly, since as I metioned above I will use that in production environment and it will be really painful if it is changed, for instance during some update of .NET Framework or IIS. – TN. Apr 12 '10 at 10:27
feedback

The article posted by Jim is interesting, but as Jim says it does not mention anything about thread safety.

I guess you would only need the lock mechanism if you are initializing static members or performing "only once" initializations i.e. initializing a static resource.

I couldn't conclude from MSDN nor the article mentioned by Jim that we need the lock mechanism when initializing non-static class variables.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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