You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The two are somewhat orthogonal to each other, although there is a bit of an overlap, because frequent polling will require more open connections if other requests are done at the same time.
What pipelining would do for us is that many small requests (I assume this would happen frequently when syncing directories with many small/average sized files) are accelerated, because they require fewer connections and new requests can be send before responses for earlier requests are received. Since there is no chunking going on long-running requests or responses will still block a connection, so one would need maybe two / just a couple (one+ for smaller requests, one+ for larger requests that shouldn't be pipelined).
I suspect that this may require larger changes overall.
follow up on #577
The text was updated successfully, but these errors were encountered: