arturobernalg commented on PR #717:
URL: 
https://github.com/apache/httpcomponents-client/pull/717#issuecomment-3393472991

   > I don't understand this at all. What problem does this solve, compared to 
simply calling the client from a virtual thread?
   
   Virtual threads let blocking HttpClient scale: thousands of concurrent 
requests without bloated platform threads.
   They avoid thread-pool exhaustion/tuning and keep the classic API—no rewrite 
to async.
   Best under latency/IO waits (DNS, TLS, slow servers): frees carriers, 
improves throughput and tail latency.
   Cheaper context switches and straight-line stack traces vs. async 
callback/Future pyramids.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to