Skip to content

Concurrency vs. Parallelism Definitions

| general |

Recently I had long discussion in scope of  “concurrency” and “parallelism” definitions. That’s why I’ve decided to pick the most trusted sources for these definitions in one place:

From Akka documentation:

Concurrency and parallelism are related concepts, but there are small differences. Concurrency means that two or more tasks are making progress even though they might not be executing simultaneously. This can for example be realized with time slicing where parts of tasks are executed sequentially and mixed with parts of other tasks. Parallelism on the other hand arise when the execution can be truly simultaneous.

From Oracle “Multithreaded Programming Guide”:

Parallelism - A condition that arises when at least two threads are executing simultaneously.
Concurrency - A condition that exists when at least two threads are making progress. A more generalized form of parallelism that can include time-slicing as a form of virtual parallelism.