vote up 1 vote down star

I have a static Cache that at a set time updates a generic list of Objects from a database.

It is just a simple static List:

private static List _myObject;

public List<myObject> FillMyObject()
{
     if(_myObject == null || myTimer)
      _myObject = getfromDataBase();
}

I have 2 methods to update my object called UpdateMyObject and RemoveAnEntryFromMyObject.

Everything seems to run fine but everyone once and a while I get a mass amount of errors. Then it goes away and seems fine again. Does anyone know what is going on?

flag
1  
What kind of errors? It looks like a synchronization problem, but you haven't given us enough information to go on. Are you using this in a multithreaded context (i.e., a web application)? – Jeff Sternal Oct 22 at 15:50
Yes a web app using .net 2.0 – Bledi G Oct 22 at 16:00

1 Answer

vote up 2 vote down check

You need to use the lock statement whenever you are accessing or updating your static cache. The lock statement will block other threads from from executing until it is finished. If you don't do this you might have one thread attempting to loop through the collection at the same time as another thread is removing a row. Depending on you exact scenario you might want to use double check locking.

    static readonly object lockObj = new object();
    private static List<myObject> _myObject;

     public List<myObject> FillMyObject()
     {
         lock (lockObj)
         {
            if(_myObject == null || myTimer)
               _myObject = getfromDataBase();
         }
     }


     public List<myObject> UpdateMyObject(somevalue)
     {
        lock (lockObj)
         {
            _myObject.RemoveAll(delegate(myObject o)
                                {
                                    return o.somevalue == somevalue;
                                 });)
         }
     }

Further Reading

link|flag
Thanks do you have anywhere I can read about this? – Bledi G Oct 22 at 16:01
Please refer to "Further Reading" – cgreeno Oct 22 at 16:02
See also msdn.microsoft.com/en-us/library/… – TrueWill Oct 22 at 17:18

Your Answer

Get an OpenID
or

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