Tagged Questions

In computer science, concurrency is a property of systems in which several computations are executing simultaneously, and potentially interacting with each other. The computations may be executing on multiple cores in the same chip, preemptively time-shared threads on the same processor, or executed on physically separated processors.

learn more… | top users | synonyms (1)

89
votes
4answers
17k views

What is the Haskell response to Node.js?

I believe the Erlang community is not envious of Node.js as it does non-blocking I/O natively and has ways to scale deployments easily to more than one processor (something not even built-in in ...
89
votes
49answers
13k views

What is the most frequent concurrency issue you've encountered in Java? [closed]

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 ...
73
votes
1answer
4k views

What's the status of multicore programming in Haskell?

What's the status of multicore programming in Haskell? What projects, tools, and libraries are available now? What experience reports have there been?
54
votes
9answers
3k views

Is javascript guaranteed to be single-threaded?

Javascript is known to be single-threaded in all modern browser implementations, but is that specified in any standard or is it just by tradition? Is it totally safe to assume that javascript is ...
54
votes
8answers
7k views

SET NOCOUNT ON usage

Inspired by this question where there are differing views on SET NOCOUNT... Should we use SET NOCOUNT ON for SQL Server? If not, why not? What it does Edit 6, on 22 Jul 2011 It suppresses the ...
53
votes
4answers
10k views

What is a good pattern for using a Global Mutex in C#?

The Mutex class is very misunderstood, and Global mutexes even more so. What is good, safe pattern to use when creating Global mutexes?
50
votes
13answers
5k 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 ...
49
votes
5answers
3k views

How is Node.js inherently faster when it still relies on Threads internally?

I just watched the following video: Introduction to Node.js and still don't understand how you get the speed benefits. Mainly, at one point Ryan Dahl (Node.js' creator) says that Node.js is ...
48
votes
20answers
3k 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 ...
47
votes
23answers
3k 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. ...
46
votes
3answers
32k views

Collection was modified; enumeration operation may not execute

I can't get to the bottom of this error, because when the debugger is attached, it does not seem to occur. Below is the code. This is a WCF server in a Windows service. The method NotifySubscribers ...
44
votes
9answers
24k 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) ...
41
votes
9answers
3k 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 ...
36
votes
8answers
14k views

What is a race condition?

When writing multi-threaded applications, one of the most common problems experienced are race conditions. My question to the community, is: What is a race condition? How do you detect them? How ...
35
votes
2answers
3k views

Is F# really faster than Erlang at spawning and killing processes?

Updated: This question contains an error which makes the benchmark meaningless. I will attempt a better benchmark comparing F# and Erlang's basic concurrency functionality and inquire about the ...
35
votes
5answers
5k views

Concurrency vs Parallelism - What is the difference?

Concurrency vs Parallelism - What is the difference? Any examples
34
votes
7answers
10k views

When and how should I use a ThreadLocal variable?

When should I use a ThreadLocal variable? How is it used?
31
votes
6answers
2k views

Ways to improve performance consistency

In the following example, one thread is sending "messages" via a ByteBuffer which is the consumer is taking. The best performance is very good but its not consistent. public class Main { public ...
31
votes
6answers
3k views

Is AsyncTask really massively flawed or am I just missing something?

I have investigated this problem for months now, came up with different solutions to it, which I am not happy with since they are all massive hacks. I still cannot believe that a class that flawed in ...
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 ...
29
votes
3answers
5k views

How does LMAX's disruptor pattern work?

http://code.google.com/p/disruptor/ I am trying to understand the disruptor pattern. I have watched the infoq video and tried to read their paper. I understand there is a ring buffer involved, that ...
28
votes
10answers
8k views

Circular lock-free buffer

I'm in the process of designing a system which connects to one or more stream of data feeds and do some analysis on the data than trigger events based on the result. In a typical multi-threaded ...
28
votes
15answers
4k 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 ...
27
votes
4answers
1k views

Is volatile expensive?

After reading http://gee.cs.oswego.edu/dl/jmm/cookbook.html about the implementation of volatile, especially section "Interactions with Atomic Instructions" I assume that reading a volatile variable ...
26
votes
3answers
482 views

The actor model: Why is erlang special? Or, why do you need another language for it?

I've been looking into learning erlang, and as a result, have been reading (okay, skimming) about the actor model. From what I understand, the actor model is simply a set of functions (run within ...
26
votes
11answers
2k 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 ...
25
votes
3answers
320 views

Why reading a volatile and writing to a field member is not scalable in Java?

Observe the following program written in Java (complete runnable version follows, but the important part of the program is in the snippet a little bit further below): import java.util.ArrayList; ...
25
votes
9answers
1k views

Write a program that will surely go into deadlock

I recently got this questions asked in an interview. I answered that deadlock occurs if the interleaving goes wrong, but the interviewer insisted that a program that will always go into deadlock ...
25
votes
6answers
5k views

Node.js or Erlang

I really like these tools when it comes to the concurrency level it can handle. Erlang looks like much more stable solution but requires much more learning and a lot of diving into functional ...
25
votes
10answers
2k views

Concurrency: how does shared memory vs message passing handle large data structures?

In looking at Go and Erlang's approach to concurrency, I noticed that they both rely on message passing. This approach obviously alleviates the need for complex locks because there is no shared ...
25
votes
11answers
19k views

synchronized block vs synchronized method?

Can any one tell me the advantage of synchronized method over synchronized block with an example?Thanks.
25
votes
16answers
4k views

Which programming language makes concurrent programming as easy as possible?

If you want to create programs with threads/processes that run parallel you have to learn about many stuff, like race conditions, locks, semaphors, monitors, deadlocks .... Is there a language that ...
24
votes
1answer
282 views

Replacing ASP.Net's session entirely

ASP.Net session appear perfect for a traditional WebForms app, but they do some things that are a serious problem for a modern AJAX and MVC application. Specifically there are only 3 ways to access ...
24
votes
3answers
2k views

Haskell lightweight threads overhead and use on multicores

I've been reading the "Real World Haskell" book, the chapter on concurrency and parallelism. My question is as follows: Since Haskell threads are really just multiple "virtual" threads inside one ...
24
votes
6answers
8k views

How to implement simple threading in Java

I'm looking for the simplest, most straightforward way to implement the following: The main program instantiates worker threads to do a task. Only n tasks can be running at once. When n is reached, ...
24
votes
18answers
2k 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 ...
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; ...
21
votes
5answers
2k views

High-performance Concurrent MultiMap Java/Scala

I am looking for a high-performance, concurrent, MultiMap. I have searched everywhere but I simply cannot find a solution that uses the same approach as ConcurrentHashMap (Only locking a segment of ...
21
votes
11answers
5k views

How to run concurrency unit test?

How to use junit to run concurrency test? Let's say I have a class public class MessageBoard { public synchronized void postMessage(String message) { .... } public void ...
21
votes
3answers
3k views

Can Scala actors process multiple messages simultaneously?

The reply to a recent question of mine indicated that an actor processed its messages one at a time. Is this true? I see nothing that explicitly says that (in Programming in Scala), which contains the ...
21
votes
7answers
1k 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 ...
21
votes
8answers
5k views

Django: How can I protect against concurrent modification of data base entries

If there a way to protect against concurrent modifications of the same data base entry by two or more users? It would be acceptable to show an error message to the user performing the second ...
20
votes
7answers
462 views

Why are two AtomicIntegers never equal?

I stumbled across the source of AtomicInteger and realized that new AtomicInteger(0).equals(new AtomicInteger(0)) equals false. Why is this? Is it some "defensive" design choice related to ...
20
votes
5answers
1k views

Strategies for concurrent pipelines in Java

Consider the following shell script: gzip -dc in.gz | sed -e 's/@/_at_/g' | gzip -c > out.gz This has three processes working in parallel to decompress a stream, modify it, and re-compress it. ...
20
votes
22answers
2k 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 ...
20
votes
11answers
16k views

When would you call java's thread.run() instead of thread.start()?

... the question says it all I believe!
20
votes
4answers
7k views

The difference between the Runnable and Callable interfaces in Java

What is the difference between using the Runnable and Callable interfaces when designing a concurrent thread in Java, why would you choose one over the other?
20
votes
8answers
5k views

What is a semaphore?

A semaphore is a programming concept that is frequently used to solve multi-threading problems. My question to the community: What is a semaphore and how do you use it?
19
votes
5answers
689 views

What is the “Hello World” of concurrent programs?

I'm looking for some canonical, simple concurrency problems, suitable for demonstrating usage of a library for concurrent computations I'm working on. To clarify what I mean by "concurrency": I'm ...
19
votes
7answers
898 views

Unit testing real-time / concurrent software

The classical unit testing is basically just putting x in and expecting y out, and automating that process. So it's good for testing anything that doesn't involve time. But then, most of the ...

1 2 3 4 5 68