Concurrency with asyncio

Concurrency is about dealing with lots of things at once. Parallelism is about doing lots of things at once. Not the same, but related. One is about structure, one is about execution. Concurrency provides a way to structure a solution to solve a problem that may(but not necessarily) be parallelizable.

end ...

原文地址:https://www.cnblogs.com/neozheng/p/12536320.html