Tagged Questions

Locking allows different types of resources to be locked by a transaction.

learn more… | top users | synonyms (1)

76
votes
8answers
11k views

Volatile vs. Interlocked vs. lock

Let's say that a class has a public int counter field that is accessed by multiple threads. This int is only incremented or decremented. To increment this field, which approach should be used, and ...
58
votes
5answers
10k views

What are the differences between various threading synchronization options in C#?

Can someone explain the difference between: lock (someobject) {} Using Mutex Using Semaphore Using Monitor Using Other .Net synchronization classes I just can't figure it out. It seems to me the ...
52
votes
7answers
9k views

Why is lock(this) {…} bad?

The MSDN documentation says that public class SomeObject { public void SomeOperation() { lock(this) { //Access instance variables } } } is "is a problem if the instance can ...
37
votes
5answers
24k views

Recursive Lock (Mutex) vs Non-Recursive Lock (Mutex)

POSIX allows mutexes to be recursive. That means the same thread can lock the same mutex twice and won't deadlock. Of course it also needs to unlock it twice, otherwise no other thread can obtain the ...
37
votes
4answers
23k views

Optimistic vs. Pessimistic locking

I understand the differences between optimistic and pessimistic locking*. Now could someone explain to me when I would use either one in general? And does the answer to this question change ...
33
votes
7answers
2k views

Locking Executing Files: Windows does, Linux doesn't. Why?

I noticed when a file is executed on Windows (.exe or .dll), it is locked and cannot be deleted, moved or modified. Linux, on the other hand, does not lock executing files and you can delete, move, ...
31
votes
8answers
3k views

Pure-Ruby concurrent Hash

What's the best way to implement a Hash that can be modified across multiple threads, but with the smallest number of locks. For the purposes of this question, you can assume that the Hash will be ...
30
votes
5answers
3k views

Do spurious wakeups actually happen?

Seeing various locking related question and (almost) always finding the 'loop because of spurious wakeups' terms1 I wonder, has anyone experienced such kind of a wakeup (assuming a decent ...
29
votes
10answers
22k views

lock keyword in C#

I understand the main function of the lock key word from MSDN lock Statement (C# Reference) The lock keyword marks a statement block as a critical section by obtaining the ...
27
votes
8answers
2k views

Are locks unnecessary in multi-threaded Python code because of the GIL?

If you are relying on an implementation of Python that has a Global Interpreter Lock (i.e. CPython) and writing multithreaded code, do you really need locks at all? If the GIL doesn't allow multiple ...
25
votes
4answers
3k views

Re-entrant locks in C#

Will the following code result in a deadlock using C# on .NET? class MyClass { private object lockObj = new object(); public void Foo() { lock(lockObj){ Bar(); ...
24
votes
4answers
544 views

Cost of locking in .NET vs Java

I was playing with Disruptor framework and its port for .NET platform and found an interesting case. May be I completely miss something so I'm looking for help from almighty Community. long ...
24
votes
10answers
7k views

Python: single instance of program

Is there a Pythonic way to have only one instance of a program running? The only reasonable solution I've come up with is trying to run it as a server on some port, then second program trying to ...
24
votes
7answers
3k views

Why the Global Interpreter Lock?

What is exactly the function of Python's Global Interpreter Lock? Do other languages that are compiled to bytecode employ a similar mechanism?
23
votes
4answers
8k views

Is a bool read/write atomic in C#

Is accessing a bool field atomic in C#? In particular, do I need to put a lock around: class Foo { private bool _bar; //... in some function on any thread (or many threads) _bar = true; ...
18
votes
6answers
975 views

Only inserting a row if it's not already there

I had always used something similar to the following to achieve it: INSERT INTO TheTable SELECT @primaryKey, @value1, @value2 WHERE NOT EXISTS (SELECT NULL FROM ...
18
votes
11answers
15k views

Reader/Writer Locks in C++

I'm looking for a good reader/writer lock in C++. We have a use case of a single infrequent writer and many frequent readers and would like to optimize for this. Preferable I would like a ...
17
votes
13answers
61k views

What is the best WebDAV client for Windows?

The support of locking will be preferred.
16
votes
2answers
272 views

How expensive is lock(…) when the lock isn't contended?

While looking into double-checked locking I've seen numerous recommendations to just skip the first check and immediately go for the lock and just check after taking it instead. This lead me to ...
16
votes
7answers
615 views

How does lock work exactly? C#

I see that for using thread unsafe objects we wrap the code with a lock like this - private static readonly Object obj = new Object(); lock(obj) { //thread unsafe code } So what happens when ...
16
votes
4answers
470 views

Does the C# Yield free a lock?

I have the following method: public static IEnumerable<Dictionary<string, object>> GetRowsIter (this SqlCeResultSet resultSet) { // Make sure we don't multi thread the database. ...
16
votes
5answers
5k views

Distributed Lock Service

Which distributed lock service would you use? Requirements are: A mutual exclusion (lock) that can be seen from different processes/machines lock...release semantics Automatic lock release after a ...
15
votes
4answers
2k views

Java Concurrency: CAS vs Locking

Im currently reading the Book Java Concurrency in Practice. In the Chapter 15 they are speaking about the Nonblocking algorithms and the compare-and-swap (CAS) Method. It is written that the CAS ...
15
votes
4answers
5k views

What is the equivalent for LOCK_ESCALATION = TABLE in SQL Server 2005?

I have a script that was generated in SQL Server 2008, but I need to execute it against a SQL Server 2005 database. What would an equivalent statement for the following be in SQL Server 2005? ALTER ...
13
votes
6answers
325 views

Lightweight wrapper - is this a common problem and if yes, what is its name?

I have to use a library that makes database calls which are not thread-safe. Also I occasionally have to load larger amounts of data in a background thread. It is hard to say which library functions ...
13
votes
5answers
343 views

Locking strategies and techniques for preventing deadlocks in code

The common solution to preventing deadlock in code is to make sure the sequence of locking occur in a common manner regardless of which thread is accessing the resources. For example given threads T1 ...
13
votes
2answers
4k views

Intermittent log4net RollingFileAppender locked file issue

We are seeing an intermittent issue on development and production machines whereby our log files are not getting logged to. When running in development and debugging using Visual Studio we get the ...
13
votes
5answers
793 views

Do I need to lock or mark as volatile when accessing a simple boolean flag in C#?

Lets just say you have a simple operation that runs on a background thread. You want to provide a way to cancel this operation so you create a boolean flag that you set to true from the click event ...
13
votes
8answers
11k views

Any way to select without causing locking in MySQL?

Query: SELECT COUNT(online.account_id) cnt from online; But online table is also modified by an event, so frequently I can see lock by running show processlist. Is there any grammar in MySQL that ...
13
votes
3answers
5k views

Reference for proper handling of PID file on Unix

Where can I find a well-respected reference that details the proper handling of PID files on Unix? On Unix operating systems, it is common practice to “lock” a program (often a daemon) by use of a ...
13
votes
2answers
9k views

Using WITH NOLOCK Table Hint in Query Using View - Does it Propagate Within the View?

If a "WITH NOLOCK" query hint is used on a View in SQL Server, does it propagate that hint to the view definition itself, even if NOLOCK is NOT used for the raw tables in the View definition? The ...
13
votes
4answers
19k views

Effect of NOLOCK hint in SELECT statements

I guess the real question is: If I don't care about dirty reads, will adding the with (NOLOCK) hint to a SELECT statement affect the performance of: the current SELECT statement other ...
12
votes
3answers
162 views

C# - Lock question using EnterWriteLock

The following code is from MSDN: private ReaderWriterLockSlim cacheLock = new ReaderWriterLockSlim(); private Dictionary<int, string> innerCache = new Dictionary<int, string>(); public ...
12
votes
2answers
428 views

Relative performance of swap vs compare-and-swap locks on x86

Two common locking idioms are: if (!atomic_swap(lockaddr, 1)) /* got the lock */ and: if (!atomic_compare_and_swap(lockaddr, 0, val)) /* got the lock */ where val could simply be a constant or ...
12
votes
4answers
7k views

fcntl, lockf, which is better to use for file locking?

Looking for information regarding the advantages and disadvantages of both fcntl and lockf for file locking. For example which is better to use for portability? I am currently coding a linux daemon ...
12
votes
7answers
16k views

C# thread safety with get/set

This is a detail question for C#. Suppose I've got a class with an object, and that object is protected by a lock: Object mLock = new Object(); MyObject property; public MyObject MyProperty { ...
12
votes
5answers
4k views

What is the best way to open a file for exclusive access in Python?

What is the most elegant way to solve this: open a file for reading, but only if it is not already opened for writing open a file for writing, but only if it is not already opened for reading or ...
11
votes
2answers
195 views

Should NSLocking usage always be wrapped in @try/@finally?

Given a Cocoa NSLocking object (like an NSLock) and some non-trivial code to be executed while the lock is held: To ensure a lock is always released, should the following idiom always be used? ...
11
votes
5answers
271 views

Threads synchronization. How exactly lock makes access to memory 'correct'?

First of all, I know that lock{} is synthetic sugar for Monitor class. (oh, syntactic sugar) I was playing with simple multithreading problems and discovered that cannot totally understand how lockng ...
11
votes
5answers
339 views

Why Locking On a Public Object is a Bad Idea

Ok, I've used locks quite a bit, but I've never had this scenario before. I have two different classes that contain code used to modify the same MSAccess database: public class DatabaseNinja { ...
11
votes
6answers
471 views

Simple Java name based locks?

MySql has a handy function: SELECT GET_LOCK("SomeName") This can be used to create simple, but very specific, name based locks for an application, but it requires a database connection. I have ...
11
votes
9answers
2k views

Why is ConcurrentBag<T> so slow in .Net (4.0)? Am I doing it wrong?

Before I started a project, I wrote a simple test to compare the performance of ConcurrentBag from (System.Collections.Concurrent) relative to locking & lists. I am extremely surprised that ...
11
votes
3answers
1k views

How do filesystems handle concurrent read/write?

User A asks the system to read file foo and at the same time user B wants to save his or her data onto the same file. How is this situation handled on the filesystem level?
11
votes
6answers
2k views

How to improve INSERT INTO … SELECT locking behavior

In our production database, we ran the following pseudo-code SQL batch query running every hour: INSERT INTO TemporaryTable (SELECT FROM HighlyContentiousTableInInnoDb WHERE ...
11
votes
2answers
3k views

Java Concurrency Techniques

Here are two chunks of code that accomplish (what I think is) the same thing. I basically am trying to learn how to use Java 1.5's concurrency to get away from Thread.sleep(long). The first example ...
11
votes
11answers
908 views

Double checked locking Article

I was reading this article about "Double-Checked locking" and out of the main topic of the article I was wondering why at some point of the article the author uses the next Idiom: Listing 7. ...
11
votes
10answers
940 views

Why avoid pessimistic locking in a version control system?

Based on a few posts I've read concerning version control, it seems people think pessimistic locking in a version control system is a bad thing. Why? I understand that it prevents one developer from ...
11
votes
11answers
6k views

How do I lock a file in Perl?

What is the best way to create a lock on a file in Perl? Is it best to flock on the file or to create a lock file to place a lock on and check for a lock on the lock file?
10
votes
1answer
148 views

lock(X) vs lock(typeof(X))

What is the difference between locking on a type of a class vs locking on the class itself? For example: private readonly object xmpp = new object(); lock (xmpp) { ... } vs lock ...
10
votes
4answers
1k views

How to implement a lock in JavaScript

How could something equivalent to lock in C# be implemented in JavaScript? So, to explain what I'm thinking a simple use case is: User clicks button B. B raises an onclick event. If B is in ...

1 2 3 4 5 40