What is the difference between concurrency and parallelism?

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

What is the difference between concurrency and parallelism?

Examples are appreciated.

30条回答
  •  攒了一身酷
    2020-11-22 01:00

    Concurrency => When multiple tasks are performed in overlapping time periods with shared resources (potentially maximizing the resources utilization).

    Parallel => when single task is divided into multiple simple independent sub-tasks which can be performed simultaneously.

提交回复
热议问题