title: "Concurency" description: "关于并发" draft: true weight: 50

Concurrency And Parallelism

Concurrency / 并发

Parallelism / 并行

I/O Bound And CPU Bound Programme

IO Bound / IO密集型

CPU Bound / CPU密集型

Process, Thread And Coroutine

Process / 进程

Thread / 线程

Coroutine / 协程

Language

Python

https://docs.python.org/3/library/concurrency.html

  • mitlprocesses
  • threading
  • [asyncio]({{< relref "blog/techstack/python_coroutine" >}})

Golang