Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
6answers
122 views

Java: 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
171 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. ...
6
votes
1answer
293 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 ...
6
votes
1answer
293 views

double checking 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 () { ...
5
votes
2answers
340 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
5answers
180 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 ...
5
votes
7answers
527 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 ...
4
votes
2answers
278 views

Double-Checked Locking Pattern solved in C++0x?

The new machine model of C++0x allows for multi-processor systems to work reliably, wrt. to reorganization of instructions. As Meyers and Alexandrescu pointed out the "simple" Double-Checked Locking ...
4
votes
4answers
344 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 ...
4
votes
2answers
199 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 ...
4
votes
5answers
379 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 { ...
4
votes
3answers
1k 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 ...
3
votes
3answers
60 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 ...
3
votes
3answers
243 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) { ...
2
votes
3answers
90 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 ...
2
votes
5answers
290 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 ...
2
votes
4answers
171 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 { ...
2
votes
1answer
589 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 ...
2
votes
1answer
265 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 ...
2
votes
3answers
638 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 ...
1
vote
2answers
134 views

Is it good to test a condition then lock then re-test the condition [closed]

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: ...
1
vote
2answers
173 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); ...
1
vote
1answer
280 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 ...
0
votes
3answers
91 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 ...
0
votes
2answers
113 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++ ...
0
votes
5answers
145 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
92 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 ...
0
votes
2answers
448 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 ...
0
votes
7answers
240 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
134 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 ...