33
votes
47answers
6k views
What is the most frequent concurrency problem you’ve encountered in Java?
This is a poll of sorts about common concurrency problems in Java. An example might be the classic deadlock or race condition or perhaps EDT threading bugs in Swing. I'm interested both in a breadth …
28
votes
12answers
2k views
What is meant by “thread-safe” code?
Does it mean that two threads can't change the undelying data simultaneously? or does it mean that the given code component will run with unpredictable results when more than one thread are running …
27
votes
9answers
2k views
How/why do functional languages (specifically Erlang) scale well?
I have been watching the growing visibility of functional programming languages and features for a while. I looked into them and didn't see the reason for the appeal.
Then, recently I attended Kevin …
24
votes
18answers
1k views
Java concurrency cynicism gone too far?
I was wondering if some of you who are experienced in concurrency programming could help me interpret a statement/philosophy properly.
I have a copy of Bruce Eckel's grand tome Thinking In Java (4th …
22
votes
19answers
2k views
How are you taking advantage of Multicore?
As someone in the world of HPC who came from the world of enterprise web development, I'm always curious to see how developers back in the "real world" are taking advantage of parallel computing. …
19
votes
15answers
2k views
Multi-Core and Concurrency - Languages, Libraries and Development Techniques
The CPU architecture landscape has changed, multiple cores is a trend that will change how we have to develop software. I've done multi-threaded development in C, C++ and Java, I've done …
17
votes
11answers
813 views
What are some good open source c# examples of quality domain models.
I'm a pretty young developer, and still in the emulation phase of my career. I have read a lot about some topics like concurrency, and using unit of work to allow your business layer to control …
16
votes
8answers
1k 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 …
15
votes
18answers
1k views
What are some good resources for learning threaded programming?
With the rise of multicore CPUs on the desktop, multithreading skills will become a valuable asset for programmers. Can you recommend some good resources (books, tutorials, websites, etc.) for a …
14
votes
8answers
400 views
Why don’t I see pipe operators in most high-level languages?
In Unix shell programming the pipe operator is an extremely powerful tool. With a small set of core utilities, a systems language (like C) and a scripting language (like Python) you can construct …
14
votes
11answers
828 views
Why don’t large programs (such as games) use loads of different threads?
I don't know how commercial games work inside very much, but the open source games I have come across don't seem to be massively into threading. Same goes for most other desktop applications, normally …
14
votes
6answers
2k views
What’s the difference between ConcurrentHashMap and Collections.synchronizedMap(Map)?
I have a Map which is to be modified by several threads concurrently.
There seem to be three different synchronized Map implementations in the Java API:
Hashtable
Collections.synchronizedMap(Map)
…
14
votes
6answers
631 views
Java memory model - can someone explain it?
For years and years, I've tried to understand the part of Java specification that deals with memory model and concurrency. I have to admit that I've failed miserably. Yes' I understand about locks and …
14
votes
15answers
686 views
Explaining race conditions to a non-technical audience
Recently, I found myself having to write up some concerns I have about race conditions in an application that is in development (not by me). This will likely be brought to the attention of …
13
votes
22answers
992 views
What are common concurrency pitfalls?
I'm looking into educating our team on concurrency. What are the most common pitfalls developers fall into surrounding concurrency. For instance, in .Net the keyword static opens the door to a lot of …
