What is the difference between concurrency and parallelism?

前端 未结 30 2671
清歌不尽
清歌不尽 2020-11-22 00:21

What is the difference between concurrency and parallelism?

Examples are appreciated.

30条回答
  •  醉话见心
    2020-11-22 01:11

    concurency: multiple execution flows with the potential to share resources

    Ex: two threads competing for a I/O port.

    paralelism: splitting a problem in multiple similar chunks.

    Ex: parsing a big file by running two processes on every half of the file.

提交回复
热议问题