Closed
Description
I have to communicate with very limited hardware which supports only a few concurrent connections. I can work around this limitation with http pipelining which will be fully supported.
There is only one problem:
OkHttp doesn't seem to support http pipelining. Will this be supported in the future?
Activity
swankjesse commentedon Oct 2, 2015
No, we aren't planning on supporting HTTP pipelining. It’s not robust.
inder123 commentedon Apr 4, 2016
@swankjesse what do you mean HTTP pipelining is not robust? Pipelining should help in poor bandwidth connections in many countries. How would I go about enabling it in OkHttp?
inder123 commentedon Apr 4, 2016
https://github.com/jasondevj/hotpotato seems to support pipelining and is under Apache license. May be we can borrow something from there?
swankjesse commentedon Apr 4, 2016
They disabled it from Chrome because it performed poorly.
https://www.chromium.org/developers/design-documents/network-stack/http-pipelining
The workaround is HTTP/2.