-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
Description
동일한 내용은 아니지만 이번 Toss slash 2024에서 API 병렬 처리 시 코루틴을 통해 일부 성능 향상을 도모한 내용이 소개된 바 있습니다.
Java로 코드 작성 시 코루틴을 통해 코드를 작성할 수는 없지만, 이번 주차에 학습한 executor를 통해 API 요청을 일부 병렬적으로 처리할 수 있습니다.
- blocking: https://github.com/wilump-labs/java-concurrency-in-actions/blob/main/coroutine/src/main/kotlin/labs/wilump/coroutine/blocking/BlockingSendMoneyService.kt
- executor: https://github.com/wilump-labs/java-concurrency-in-actions/blob/main/coroutine/src/main/kotlin/labs/wilump/coroutine/executor/ExecutorSendMoneyService.kt
sso9594