I have a server which handles multiple incoming socket connections and creates 2 different threads where it stores the data in XML format.
I'm using the lock statement for thread safety almost in every event handler called asyncronously and in the 2 thread on different parts of code. Sadly using this approach my application significantly slows down.
I tried to not use lock at all and the server is very fast in execution, even the file storage seems to boost; but the program crashes for reasons I don't understand after 30sec - 1min. of work.
So. I thought that the best way is to use less locks or to use it only there where necessary. As such, I have 2 questions:
Is the lock needed when I write to the public accessed variables (lists) element only or even when I read ?
Is the lock needed only in the threads which I create or which are created asyncronously by the socket handler or in other places too ?
Someone could give me some practical guidelines, about how to operated. Will not post the whole code. It hasn't sense to post about 2500 lines of code.