Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Concurrency and Parallelism in Python: thread x multiprocess x async-io

License

NotificationsYou must be signed in to change notification settings

leogregianin/python-concurrency-and-parallelism

Repository files navigation

Concurrency and parallelism in Python

Concurrency is about dealing with lots of things at once. Parallelism is about doing lots of things at once.-- Rob Pike, co-inventor da linguagem Go - Concurrency is not Parallelism (it's better)

Ao preparar vários pratos ao mesmo tempo o cozinheiro está trabalhando de forma concorrente, porque normalmente ele só cuida de um prato por vez, mas vários estão sendo preparados ao mesmo tempo.Por outro lado, um fogão de 6 bocas permite aquecer 6 panelas em paralelo.Ou seja, o cozinheiro trabalha em modo concorrente e o fogão em modo paralelo.--Garoa Hacker Clube

Install packages

* pipenv installor* requests* asyncio* aiohttp* httpx

Benchmarks

Benchmark name(1)(2)(3)(4)(5)(6)
synchronous (sync.py)17.3660717.2263015.4576815.195825.015654.41665
thread with 5 workers (thread.py)3.248352.758201.843231.813230.509360.51072
thread with 50 workers (thread.py)0.625690.756630.573230.587740.294040.25039
parallelism (multiprocess.py)3.607703.317792.845972.705420.370440.36182
asynchronous coroutines (async.py)0.586600.609510.571610.579690.277580.23457
  • Time in seconds
  • (1) with Python 3.6.5 (win32)
  • (2) with Python 3.6.5 (win32)
  • (3) with Python 3.8.0 (win32)
  • (4) with Python 3.8.0 (win32)
  • (5) with Python 3.7.4 (linux gcc 8.3.0)
  • (6) with Python 3.7.4 (linux gcc 8.3.0)

References

About

Concurrency and Parallelism in Python: thread x multiprocess x async-io

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors2

  •  
  •  

Languages


[8]ページ先頭

©2009-2025 Movatter.jp