Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
216 views

Is there an equivalent of the lock{} statement for ReaderWriterLockSlim?

I like the shortcut in C# of lock(myLock){ /* do stuff */}. Is there an equivalent for read/write locks? (Specifically ReaderWriterLockSlim.) Right now, I use the following custom method, which I ...
5
votes
2answers
307 views

Again double-checked locking and C#

Recently I have been refactoring some of my C# code and I found a few double-checked locking practices taking place. I didn't know it was a bad practice back then and I really want to get rid of it. ...
5
votes
2answers
326 views

What are the real downsides of using ReaderWriterLock

We have project targeted .NET 2.0 RTM (yes, it should be .NET 2.0 RTM, we have some orthodox clients). And I'm just wondering what are the downsides of ReaderWriterLock? Why is it so bad that everyone ...
4
votes
3answers
158 views

Is locking access to a bool required or is it Overkill

I have a class that is designed primarily as a POCO class, with various Threads and Tasks could read its values, and only others only occasionally updating these values. This seems to be an ideal ...
3
votes
2answers
97 views

ReaderWriteLockSlim or Lock

I m using ConcurrentBag to store object in run time. At some point I need to empty the bag and store the bag content to a list. This is what i do: IList<T> list = new List<T>(); ...
3
votes
4answers
132 views

upgradable reader lock in c#

I have a dictionary that is shared among number of threads. Every thread reads specific value from the dictionary according to a given key, but - if the key does not exist in the dictionary the thread ...
3
votes
3answers
182 views

ReaderWriterLockSection: A bad idea?

In writing some threaded code, I've been using the ReaderWriterLockSlim class to handle synchronized access to variables. Doing this, I noticed I was always writing try-finally blocks, the same for ...
3
votes
1answer
533 views

Does the MSDN example usage of ReaderWriterLockSlim contain deadlock risk?

I'm using a ReaderWriterLockSlim to protect access to the cache on my ASP.NET application. MSDN has examples of using the lock. However this article ...
2
votes
1answer
128 views

Simplifying ReaderWriterLockSlim Syntax

I recently had to use ReaderWriterLockSlim to synchronize access to several resources that are shared between multiple threads. While doing it, I felt that using ReaderWriterLockSlim is not easy ...
2
votes
2answers
372 views

Why using ReaderWriterLockSlim doesn't make my Dictionary thread safe?

I wrote a small piece of code that rapidly read and write to a dictionary from multiple threads. I used ReaderWriterLockSlim to protect the code and still received an exception for allegedly trying to ...
2
votes
1answer
346 views

Is it safe to mix locks and interlock operations?

I have some code which must be thread safe whose behavior resembles this: protected long m_RunningValue protected long m_RunningCounter protected object m_Lock = new object(); public long ...
2
votes
2answers
432 views

Is ReaderWriterLockSlim.EnterUpgradeableReadLock() essentially the same as Monitor.Enter()?

So I have a situation where I may have many, many reads and only the occasional write to a resource shared between multiple threads. A long time ago I read about ReaderWriterLock, and have read about ...
1
vote
3answers
273 views

Is ReaderWriterLockSlim the right coice?

I'm writing a global error handler/logger for applications running in Windows Azure. When an error occurs in the application, a number of operations are performed that need to happen atomically. I ...
1
vote
2answers
546 views

Optimized ReaderWriterLock Read Access (C#)

So it's my understanding that on a ReaderWriterLock (or ReaderWriterLockSlim more specifically), both the read and write need acquire a mutex to take the lock. I'd like to optimize the read access of ...
1
vote
1answer
321 views

Is there a safe way to use ReaderWriterLockSlim within ASP.NET?

Joe Duffy's article about ReaderWriterLockSlim does not fill me with confidence! http://www.bluebytesoftware.com/blog/2007/02/07/IntroducingTheNewReaderWriterLockSlimInOrcas.aspx How can I safely use ...
0
votes
2answers
641 views

Windows Condition Variable vs. Event

We can use either the new condition variable primitive or windows event in order to synchronize threads in WinNT v6.x or later. Consider the following two approaches, we want workers to run at the ...
0
votes
1answer
213 views

ASP.NET Caching lock mechanisme

Using .NET 3.5. I'm storing customer objects in the cache using ReaderWriterLockSlim. The problem is that when a user from Customer A is doing an action that will result in a update to the customer ...
0
votes
1answer
67 views

Speed issues with ReaderWriterLockSlim and Garbage Collection

I have an example piece of code the illustrates issues in my code when GC.Collect is carried out on a class having a ReaderWriterLockSlim member variable. The GC.Collect takes between 2 and 3 seconds ...
0
votes
2answers
106 views

Synchronize Read Write Collection in .NET

I have an object which holds a collection of items. I want to be able to add items to the collection through an AddItem method and also to go through all of the items in the collection. My object must ...
0
votes
1answer
306 views

Class for mantain a thread safe cache

I'm developing a thread safe class that I'll use as cache, it should work in .NET and Mono. The items have a time to live, and every time that a object is retrieved, its time to live is refreshed. ...