Level Up Coding

Coding tutorials and news. The developer homepage gitconnected.com && skilled.dev && levelup.dev

Follow publication

Member-only story

Difference between concurrency and parallelism with Golang code examples

Davyjiang
Level Up Coding
Published in
7 min readApr 13, 2023

In this post, I will explain the differences between concurrency and parallelism. After that, I will give code examples using Golang.

Concurrency and parallelism are related concepts in computer science but they have different meanings.

Concurrency refers to the concept of executing multiple tasks at the same time, where jobs are interleaved in an overlapping manner in order to give an illusion of simultaneous execution.

Parallelism, on the other hand, refers to the execution of multiple tasks simultaneously using multiple processors or cores in a computer system. The tasks in parallelism run simultaneously, side by side, on different processors, unlike in concurrency where tasks are interleaved.

From the above, you can know that concurrency is about managing lots of things at once. parallelism is about doing lots of things at once.

That’s the key difference between concurrency and parallelism.

In simple terms, the first and most essential difference is that concurrency is about dealing with lots of things at once, while parallelism is about doing lots of things at the same time. The other important difference is that concurrency runs on the same processor, and parallelism runs on at least two processors.

Now, we understand the differences between concurrency and parallelism. But how about implementing them in Golang? Let’s make hard dirty.

I will give four examples. In the first two examples, the results don’t show differences clearly. In the second two examples, you will see a clear difference. All codes you can paste in your local directly.

First, the two examples’ differences are not clear

Concurrency

The following code uses Golang to implement the concurrency example.

package main

import (
"fmt"
"sync"
"time"
)

func printNumbersConcurrently(wg *sync.WaitGroup) {
for i := 1; i <= 10; i++ {
time.Sleep(100 * time.Millisecond)…

Create an account to read the full story.

The author made this story available to Medium members only.
If you’re new to Medium, create a new account to read this story on us.

Or, continue in mobile web

Already have an account? Sign in

Written by Davyjiang

15 years of code experience, got a software-engineering master's degree, learnt C++, JS, PHP and Python, Golang. Have a strong, friendly and lovely rottweiler.

Responses (2)

Write a response