thread
-
[매일읽기] Understanding Java threads once and for all개발자 라이프/매일읽기 2020. 8. 4. 21:45
원문 : https://medium.com/swlh/understanding-java-threads-once-and-for-all-711f71e0ec1e Understanding Java threads once and for all Sometimes, we want to perform several tasks at the same time. The computer can do this by using Threads. You might be reading this post… medium.com 스레드(Thread) 큰 데이터를 서브 셋으로 쪼개 병렬로 처리할 때 스레드로 처리할 수 있음 CPU 프로세서 코어 수 등 하드웨어 스펙에 따라 스레드 성능이 영향을 받을 수 있음 만약 스레드 수가 코어 수보다 많다..