Python/Concurrency

Python Threading과 multiprocessing

jinmc 2020. 10. 21. 10:27
반응형

좋은 글이 있어서 올린다.

한글 버전:

pythonstudy.xyz/python/article/24-%EC%93%B0%EB%A0%88%EB%93%9C-Thread

 

예제로 배우는 파이썬 프로그래밍 - 쓰레드 (Thread)

쓰레드 (Thread) 파이썬 프로그램은 기본적으로 하나의 쓰레드(Single Thread)에서 실행된다. 즉, 하나의 메인 쓰레드가 파이썬 코드를 순차적으로 실행한다. 코드를 병렬로 실행하기 위해서는 별도의

pythonstudy.xyz

영어 :

realpython.com/intro-to-python-threading/

 

An Intro to Threading in Python – Real Python

In this intermediate-level tutorial, you'll learn how to use threading in your Python programs. You'll see how to create threads, how to coordinate and synchronize them, and how to handle common problems that arise in threading.

realpython.com

요약 :

쓰레딩 해봤자 이거했다 저거했다 할 뿐이라서 빨라지진 않고, (전체적으로) 여러개의 프로세서(코어)를 사용하려면 multiprocessing을 사용해야된다!

반응형