https://github.com/edisonslightbulbs/asyncio
https://github.com/edisonslightbulbs/asyncio
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/edisonslightbulbs/asyncio
- Owner: edisonslightbulbs
- Created: 2018-09-17T11:28:26.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-17T14:52:13.000Z (over 6 years ago)
- Last Synced: 2025-01-14T09:12:14.412Z (4 months ago)
- Language: Python
- Size: 1000 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Concurrency is like having two threads running on a single core CPU. Instructions from each thread could be interleaved, but at any given time, only one of the two threads is actively making progress.
Parallelism is like having two threads running simultaneously on different cores of a multi-core CPU.
It is important to note that parallelism implies concurrency but not the other way round.