I am using Apache Async Http Client to make concurrent async API calls. I am wondering if it internally creates multiple threads to make concurrent requests
Asked
Active
Viewed 282 times
1 Answers
0
It is using java nio, the event loop non-blocking style, by default it creates only 1 thread per core. e.g. 8 core machine = 8 threads. FYR

Jim Horng
- 1,587
- 1
- 13
- 23