ThreadPoolExecutor와 ProcessPoolExecutor의 인자로 둘 다 'max_workers=' 받을 수 있다고 하는데요
인터넷에서 예제들을 찾아보니
with concurrent.futures.ProcessPoolExecutor(
3
) as exe:
exe.
map
(download_image, img_urls)
이런 식으로 max_workers가 없이 숫자만 사용된 형태들도 많이 보였습니다.
이런 경우에도 max_workers=3 과 같은 의미라고 봐도 되나요??