Search Results

0
votes
1answer
80 views

Application area of lock-striping

The ConcurrentHashMap of JDK uses a lock-striping technique. It is a nice idea to minimize locking overhead. Are there any other libraries or tools that take advantage of it? For example, does dat …
2
votes

What is the most frequent concurrency problem you’ve encountered in Java?

Starting a thread within the constructor of a class is problematic. If the class is extended, the thread can be started before subclass' constructor is executed. …