가상 스레드 (Virtual Thread) 에 대하여 - (1)
이번 시간에는 최근 자바 진영의 뜨거운 감자인 `가상 스레드 (Virtual Thread)`에 대해서 알아보도록 하겠습니다. 가상 스레드란?Virtual threads are lightweight threads that reduce the effort of writing, maintaining, and debugging high-throughput concurrent applications.가상 스레드는 높은 동시 처리 애플리케이션 환경을 제공하기 위한 경량 스레드입니다.Virtual thread isn't tied to a specific OS thread. A virtual thread still runs code on an OS thread. However, when code running in a..