0

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

user1142317
  • 533
  • 1
  • 8
  • 20

1 Answers1

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