Since okhttp uses thread pool, it won’t give you m...
# coroutines
o
Since okhttp uses thread pool, it won’t give you much in terms of throughput…
a
I guess okhttp is used the most on android, where you don’t spawn thousands of threads
and don’t really need non-blocking stuff, but have to constantly jump between UI and worker threads
j
Paralleluniverse has a fiber-optimized version of okhttp which will allow you to spawn many thousands of fibers over a single thread.
K 1