Click here to Skip to main content
15,868,164 members
Everything / Concurrency

Concurrency

concurrency

Great Reads

by Noah L
Beware the data race sneak attack.
by Maximilian1986
The "Game of Life" is a mathematical representation of the human evolution, in which a few patterns develop through the time.
by Paolo Parise
Graph intersection using map reduce and Akka
by ipavlu
Optionally awaitable simple to use Concurrent Priority Queue.

Latest Articles

by 1f604
Source code and explanation of my io_uring based implementation of b3sum
by Marco-Hans Van Der Willik
This article explores the performance, scalability and limitations of the various .NET Threading Implementations.
by AlexeyAB
Atomic operations and C++11 memory barriers and assembler instructions generated on x86_64 CPUs
by Jason Sultana
In this post, you will see why Threadsafe is not enough

All Articles

Sort by Score

Concurrency 

27 Oct 2015 by Maximilian1986
The "Game of Life" is a mathematical representation of the human evolution, in which a few patterns develop through the time.
14 Dec 2016 by Paolo Parise
Graph intersection using map reduce and Akka
29 Dec 2017 by ipavlu
Optionally awaitable simple to use Concurrent Priority Queue.
17 Jul 2019 by ireland94
This program demonstrates the methodology needed for by directional messaging between a Java FX foreground and 1 or more background threads.
26 Jul 2023 by 1f604
Source code and explanation of my io_uring based implementation of b3sum
16 Dec 2021 by AlexeyAB
Atomic operations and C++11 memory barriers and assembler instructions generated on x86_64 CPUs
11 Jul 2023 by Marco-Hans Van Der Willik
This article explores the performance, scalability and limitations of the various .NET Threading Implementations.
3 Mar 2019 by MehreenTahir
This article is a continuation of Programming Concurrency in C++ Part 1. We will discuss synchronization, future and promises along with async and with that, will sum up the introduction of concurrency in C++.
27 May 2013 by Marius Bancila
This article is a walk-through the C++11 support for threads and synchronization mechanisms (mutexes and condition variables).
30 Mar 2021 by AlexeyAB
Smart pointer that makes any object thread-safe for any operations, with the performance equal to that of optimized lock-free containers
20 Aug 2014 by Evgeny Zavalkovsky
Multi-reader lock that provides real readers' lock-free and wait-free concurency on multi core systems.
16 Dec 2018 by MehreenTahir
This article will help you get started with concurrency and will also introduce you to the features C++ has to support concurrent programming.
12 Feb 2018 by nchamberlain
Avian Computing provides new tools for thinking and designing parallel programs
2 Mar 2017 by Awesh Vishwakarma
The easiest way to use Entity Framework with SQLite databases in C# Winform and Console Applications
27 May 2015 by Arup Banerjee
The project is a simple Temperature Converter WPF Application which will allow user to convert from Celsius to Fahrenheit and vice versa. The objective however is to demonstrate techniques that are important when building large-scale front-end enterprise software.
24 Jul 2016 by Ameet Parse
Solving Producer Consumer Problem - Thread Safe Data Access for Shared Data
20 Nov 2018 by Shivprasad koirala
This article will explain the difference between concurrency and parallelism. Concurrency vs parallelism has been a debated topic for a long time.