Double-checked locking is a software design pattern used to reduce the overhead of acquiring a lock by first testing the locking criterion without actually acquiring the lock.
0
votes
0answers
4 views
Why double check is required in Double Check Locking Singleton class
Recently I attended one interview where I was asked this.
I understood the need of synchronization, volatile keyword etc. But why double checking one before synchronize block and one after ...
3
votes
5answers
89 views
Potential problems in Double Checked locking pattern in Singleton class
I believe the below Singleton class that I have wrote is Thread Safe.
The double-checked locking pattern might run into problems in some circumstances apparently (I've seen people warn against it, ...
5
votes
1answer
99 views
Lazy initialization for free
In an article on the double-checked locking idiom, I found this quote:
One special case of lazy initialization that does work as expected without synchronization is the static singleton. When the ...
1
vote
1answer
56 views
Looking for a test to reproduce broken double checked locking
Does anybody know of a test that reproduces "broken double checked locking" problem in java?
0
votes
6answers
191 views
Double checked locking in C#
The idea is to get a value ("data") from
a variable
if doesn't exist, then from a file
if doesn't exist, then from a server
public static string LoadData(int id)
{
if (_isDataLoaded[id - 1])
...
0
votes
1answer
571 views
Double-Checked Locking disappeared from checkstyle - why?
From the release notes, checkstyle removed the Double-Checked locking check.
I'm having a hard time understanding why. They replied this not only in the release notes but also in the issue tracker:
...
3
votes
1answer
94 views
Java Double check locking, does this code work?
I have read The "Double-Checked Locking is Broken" Declaration. But I wonder if i create the object by a function, will that be ok?
class Foo {
private Helper helper = null;
public ...
1
vote
1answer
124 views
C++ and the Perils of Double-Checked Locking : Workaround?
I was reading a paper on "Perils of double check locking by Scott Meyers". http://www.aristeia.com/Papers/DDJ_Jul_Aug_2004_revised.pdf
The author gives reasons why the double check lock fails (page ...
6
votes
2answers
474 views
C++11: Safe double checked locking for lazy initialization. Possible?
I have read many questions considering thread-safe double checked locking (for singletons or lazy init). In some threads, the answer is that the pattern is entirely broken, others suggest a solution.
...
1
vote
2answers
201 views
Does this redeem a thread-safe Double-Checked Locking pattern?
The problems with the original Double-Checked Locking pattern have been well-documented: C++ and the Perils of Double-Checked Locking. I have seen the topic come up in questions on SO fairly often.
I ...
2
votes
4answers
151 views
Java synchronized effect on Double-checked locking?
I have read through different articles such as Double-checked locking: Clever, but broken and I understand the reason of why the following code is broken in multi-threading usage.
class SomeClass {
...
4
votes
4answers
237 views
Out-of-order writes for Double-checked locking
In the examples mentioned for Out-of-order writes for double-checked locking scenarios (ref:
IBM article & Wikipedia Article)
I could not understand the simple reason of why Thread1 would come of ...
3
votes
2answers
174 views
Double-checked locking - pitfalls?
I'm using java for about a month, and still am generally an amateur in programming, so feel free to correct me if I get something wrong. Maybe I'll provide some excess details, but I'm so confused ...
1
vote
2answers
775 views
Singleton double-check concurrency issue
The fallowing clause is taken from jetbrains.net
After reading this and some other articles on the web, I still don't understand how is it possible to return null, after the first thread go in to the ...
0
votes
2answers
134 views
update memory before synchronization?
it is mentioned in the Java Memory Model that: When a thread exits a synchronized block as part of releasing the associated monitor, the JMM requires that the local processor cache be flushed to main ...
4
votes
4answers
1k views
why using volatile with synchronized block?
I saw some examples in java where they do synchronization on a block of code to change some variable while that variable was declared volatile originally .. I saw that in an example of singleton class ...
1
vote
3answers
169 views
how to understand double checked locking
void undefined_behaviour_with_double_checked_locking()
{
if(!resource_ptr) #1
{
std::lock_guard<std::mutex> lk(resource_mutex); #2
...
4
votes
3answers
167 views
Double-checked locking, NetBeans confuses me?
I have a queston regarding double-checked locking.
Consider this example:
public class Singleton {
private static volatile Singleton instance = null;
public static Singleton ...
2
votes
3answers
244 views
Is this code Double Checked Locking safe?
I am looking at some code in our app that I think may be encountering a case of "Double-checked locking". I have written some sample code that is similar to what we do.
Can anyone see how this can be ...
0
votes
2answers
314 views
Lazy initialized caching… how do I make it thread-safe?
that's what I have:
a Windows Service
C#
multithreaded
the service uses a Read-Write-Lock (multiple reads at one time, writing blocks other reading/writing threads)
a simple, self-written DB
C++
...
10
votes
6answers
1k views
Why is volatile used in this example of double checked locking
I'm reading Head First design patterns and in the chapter on the singleton pattern it shows you how to implement double checked locking as follows:
public class Singleton {
private volatile ...
6
votes
2answers
253 views
Should this C# code be refactored to use the Lazy<T> keyword instead?
I have the following code which could be called via multiple web-requests at the same second. As such, I don't want the second+ request hitting the database, but waiting until the first one does.
...
1
vote
6answers
673 views
Double checked locking with ConcurrentMap
I have a piece of code that can be executed by multiple threads that needs to perform an I/O-bound operation in order to initialize a shared resource that is stored in a ConcurrentMap. I need to make ...
0
votes
2answers
154 views
LazyReference with double-checked locking and null handling
I've been using LazyReference class for a few years (not on a regular basis of course, but sometimes it is very useful). The class can be seen here. Credits go to Robbie Vanbrabant (class author) and ...
5
votes
2answers
1k 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.
...
3
votes
5answers
659 views
Why Double-Checked Locking is used at all?
I keep on running across code that uses double-checked locking, and I'm still confused as to why it's used at all.
I initially didn't know that double-checked locking is broken, and when I learned ...
3
votes
4answers
1k views
Double checked locking on Dictionary “ContainsKey”
My team is currently debating this issue.
The code in question is something along the lines of
if (!myDictionary.ContainsKey(key))
{
lock (_SyncObject)
{
...
6
votes
2answers
592 views
Double-Checked Locking Pattern in C++11?
The new machine model of C++11 allows for multi-processor systems to work reliably, wrt. to reorganization of instructions.
As Meyers and Alexandrescu pointed out the "simple" Double-Checked Locking ...
5
votes
5answers
521 views
Does this code solve the double checked locking issue in Java?
Does this code solve the double checked locking issue in Java?
public class DBAccessService() {
private static DBAccessService INSTANCE;
private DBAccessService() {}
public static ...
11
votes
1answer
674 views
Double checked locking in Android
According to many, the somewhat common Double-Checked Locking idiom is broken for java unless you're running 1.5 or later and use the volatile keyword.
A broken double-checked lock sample:
// Broken ...
4
votes
4answers
1k views
Synchronization in a HashMap cache
I've got a web application where people ask for resources. This resources are cached using a synchronized hash map for efficiency. The problem here is when two different requests come for the same ...
2
votes
4answers
281 views
Which implementation for lazy singleton whose initialialization might fail?
Imagine you have a static no-argument method which is idempotent and always returns the same value, and may throw a checked exception, like so:
class Foo {
public static Pi bar() throws Baz { ...
10
votes
1answer
908 views
double checked locking pattern
In C++ and the Perils of Double-Checked Locking, there's persudo code to implement the pattern correctly which is suggested by the authors. See below,
Singleton* Singleton::instance () {
...
1
vote
2answers
180 views
Is it good to test a condition then lock then re-test the condition [duplicate]
Possible Duplicate:
Double-checked locking in .net
EDIT: lots of edits to clarify this question is not about singleton
I find myself writing code like this:
...
0
votes
2answers
1k views
C++ singleton implementation, double-checked locking
I heard and read a lot about singleton implementation approaches in C++, like Meyer, Phoenix, etc., but all of them seemed to have a problem in certain usage scenarios. So I came up with my own ...
3
votes
1answer
2k views
PHP Threads and Synchronization
I'm new to PHP, so to get started I've decided to implement a singleton.
While I am able to recreate the singleton pattern in php, but I am not sure how to implement double-checked locking.
Is that ...
5
votes
2answers
329 views
How should “Double-Checked Locking” be implemented in Delphi?
In C#, the following code (from this page) can be used to lazily instantiate a singleton class in a thread safe way:
class Foo {
private volatile Helper helper = null;
public Helper ...
1
vote
2answers
359 views
Java: How to do double-checked-locking with an array element?
This is what my code currently looks like:
private boolean[] isInitialized = new boolean[COUNT];
private void ensureInitialized(int i) {
if (! isInitialized[i]) {
initialize(i);
...
8
votes
7answers
1k views
Double checked locking pattern: Broken or not?
Why is the pattern considered broken? It looks fine to me? Any ideas?
public static Singleton getInst() {
if (instace == null) createInst();
return instace;
}
private static synchronized ...
5
votes
5answers
685 views
Does Java synchronized keyword flush the cache?
Java 5 and above only. Assume a multiprocessor shared-memory computer (you're probably using one right now).
Here is a code for lazy initialization of a singleton:
public final class MySingleton {
...
0
votes
7answers
343 views
Double-checked locking for growable array of binomial coefficients
I'm trying to use double-checked locking to maintain an array of binomial coefficients, but I read recently that double-checked locking doesn't work. Efficiency is extremely important so using ...
-1
votes
1answer
193 views
Maybe (… yeah right) solved: Double checked locking on C++: new to a temp pointer, then assign it to instance [closed]
This is a follow up of this post on double checked locking. I am writing a new post because it seems that posting a follow-up on "aged" posts doesn't make it as visible/active as sending out a new ...
1
vote
1answer
590 views
Threadsafe lazy loading when the loading could fail
I've been spending about an hour searching for a concensus on something I'm trying to accomplish, but have yet to find anything conclusive in a particular direction.
My situation is as follows:
I ...
4
votes
3answers
4k views
Singleton pattern and broken double checked locking in real world java application
I was reading the article Double-checked locking and the Singleton pattern, on how double checked locking is broken, and some related questions here on stackoverflow.
I have used this pattern/idiom ...
2
votes
1answer
327 views
Triple checked locking?
So in the meanwhile we know that double-checked-locking as is does not work in C++, at least not in a portable manner.
I just realised I have a fragile implementation in a lazy-quadtree that I use ...
3
votes
3answers
1k views
Java double checked locking by forcing synchronization twice, Workable?
I've read all about how double checked locking fixes never work and I don't like lazy initialization, but it would be nice to be able to fix legacy code and such a problem is too enticing not to try ...
