Introduction
This lesson introduces the concept of asynchronous programming.
We'll cover the following...
Introduction
Concurrency can be defined as dealing with multiple things at once. You can concurrently run several processes or threads on a machine with a single CPU but you'll not be parallel when doing so. Concurrency allows us to create an illusion of parallel execution even though the single CPU machine runs one thread or process at a time.
Parallelism is when we execute multiple things at once. True ...