Skip to content

Spdy serial

Sebastiaan Deckers requested to merge spdy-serial into master

The node-spdy library opens a stream immediately. This is problematic when more assets are pushed than the maximum number of concurrent streams allowed by server/client, i.e. 100 by default. This workaround serialises the push streams before sending the main response payload, which is sub-optimal. Should migrate to the native Node.js APIs.

Merge request reports