C# concurrency, locking and dictionary objects - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T06:51:20Zhttp://stackoverflow.com/feeds/question/440957http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/440957/c-concurrency-locking-and-dictionary-objects0C# concurrency, locking and dictionary objectsMikieeee2009-01-13T21:52:48Z2009-01-13T23:41:21Z
<p>I have a bunch of DB entities that are loaded into DB objects. The same DB entity may be loaded into more than DB object. Periodically a DB entity will require special processing. This processing must be performed by one thread at a time. Locking is in order here. </p>
<p>EDIT: Important note: the process calls a slow web service. This is what I'm trying to prevent concurrency. I don't see how this can be done safely w/o locks.</p>
<p>So I create an “padlock” object that will be referenced by the DB objects for locking. The padlock object is entity based so that two or more DB objects for the same entity will use the same padlock object. I’m storing these padlocks in a dictionary object using the DB entity’s ID as the key. The padlock object is just a simple string object as well. Is this the right approach? I'm thinking I'm either over engineering or simplifying this. If the approach is correct, how does this code look? It works, but I've yet to test it under load.</p>
<p>Thanks :)</p>
<pre><code>public static func(CustomObject o)
{
if (ReadyForUpdate(o))
{
lock (LookupPadLockByID(object.ID)
{
if (ReadyForUpdate(o))
{
PerformUpdate(object);
}
}
}
}
private static readonly object padlockLock = new object();
private static readonly Dictionary<int, string> padLocks = new Dictionary<int,string>();
private static object LookupPadLockByID(int uniqueID)
{
lock (padlockLock)
{
if (!padLocks.ContainsKey(uniqueID))
{
padLocks.Add(uniqueID, uniqueID + " is locked");
}
}
return padLocks[uniqueID];
}
</code></pre>
http://stackoverflow.com/questions/440957/c-concurrency-locking-and-dictionary-objects/440990#4409901Answer by Marc Gravell for C# concurrency, locking and dictionary objectsMarc Gravell2009-01-13T21:59:18Z2009-01-13T21:59:18Z<p>Well, you end up locking on a string, which isn't a good idea (although the concatenation means that interning shouldn't be a huge issue). What is a bigger issue is that:</p>
<ul>
<li>you don't seem to remove the locks from <code>padLocks</code> - is that an issue?</li>
<li>you access the dictionary outside the <code>padlockLock</code>; the <code>return</code> should be inside the <code>lock</code></li>
</ul>
<p>For this second, this would be simpler:</p>
<pre><code>object itemLock;
if (!padLocks.TryGetValue(uniqueID, out itemLock)) {
itemLock = new object();
padLocks.Add(uniqueID, itemLock);
}
return itemLock;
</code></pre>
<p>If this code is fairly local (i.e. your objects haven't escaped yet), you might simply <code>lock</code> the record itself? A lot simpler...</p>
http://stackoverflow.com/questions/440957/c-concurrency-locking-and-dictionary-objects/441012#4410120Answer by alexfeygin for C# concurrency, locking and dictionary objectsalexfeygin2009-01-13T22:05:00Z2009-01-13T22:05:00Z<p>I think you are over engineering. If you only need to protect your DB entities (which I assume is represented by "object" in your code, which I will change to "entity"), you can just use it as your lock. Any reference object can be used as a lock:</p>
<pre><code>public static func(CustomObject o)
{
if (ReadyForUpdate(o))
{
lock (entity)
{
if (ReadyForUpdate(o))
{
PerformUpdate(entity);
}
}
}
}
</code></pre>
http://stackoverflow.com/questions/440957/c-concurrency-locking-and-dictionary-objects/441033#4410330Answer by cmartin for C# concurrency, locking and dictionary objectscmartin2009-01-13T22:10:06Z2009-01-13T22:10:06Z<p>If you're using a standard Database of any type, I would suggest dumping these client-side locks entirely in favor of transactions and table/row locks.</p>
http://stackoverflow.com/questions/440957/c-concurrency-locking-and-dictionary-objects/441048#4410480Answer by nobugz for C# concurrency, locking and dictionary objectsnobugz2009-01-13T22:15:01Z2009-01-13T22:15:01Z<p>Whether you gain concurrency opportunities is not obvious from your snippets. It's possible, you trade a potentially long held lock for a short one, that's always good. Although you're bound to hit a lock somewhere in the dbase provider or engine. Only testing using realistic loads will tell.</p>
<p>Using a System.String as the lock object is quite icky. The CLR supports string interning, allowing multiple tracking handles to refer to the same string object. It isn't very likely here because you create the string from an expression. But you don't mess around with concurrency, just new an object.</p>
http://stackoverflow.com/questions/440957/c-concurrency-locking-and-dictionary-objects/441353#4413530Answer by configurator for C# concurrency, locking and dictionary objectsconfigurator2009-01-13T23:41:21Z2009-01-13T23:41:21Z<p>Locking on a string is not a good idea. I suggest two alternatives:</p>
<ol>
<li>Use a <code>Dictionary<int,object></code> as padLocks' type, and put a <code>new object();</code> as the value.</li>
<li>Create a class that simply holds the id; this would be better for readability if you ever want to look at your LockPad class while debugging.</li>
</ol>
<p>LockPad class:</p>
<pre><code>class LockPad {
public int Id { get; private set; }
public LockPad(int id) {
this.Id = id;
}
public override string ToString() {
return "lock of " + id.ToString();
}
}
</code></pre>
<p>Then, lock on that class.</p>