node.js - Ever multiple socket connections for one HTTP request? -


i'm working on zero-downtime update/clustering server. essentially, server listening on port 80 , 443. when gets request, request piped child node instance listening on other ports (may or may not on same server). when update, spin more children new code , start piping new requests those. when old children done handling requests, close themselves.

my question is: there ever http(s) request broken on multiple connections? maybe large file broken chunks each chunk closing previous connection , creating new 1 new chunk? potentially end going different servers , never joined together.

i'm talking standard get/post/put/delete , file upload. understanding, these requests take 1 connection. maybe information sent on multiple packets, information sent on 1 connection, yes?

thanks!


Comments

Popular posts from this blog

facebook - android ACTION_SEND to share with specific application only -

python - Creating a new virtualenv gives a permissions error -

javascript - cocos2d-js draw circle not instantly -