What is the difference between concurrency and parallelism?

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

What is the difference between concurrency and parallelism?

Examples are appreciated.

30条回答
  •  抹茶落季
    2020-11-22 01:11

    Concurrency vs Parallelism

    Rob Pike in 'Concurrency Is Not Parallelism'

    Concurrency is about dealing with lots of things at once.

    Parallelism is about doing lots of things at once.

    [Concurrency theory]

    Concurrency - handles waiting operation Parallelism - handles thread stuff

    My vision of concurrency and parallelism

    [Sync vs Async]

提交回复
热议问题