How much overhead is there in persistent connections?

Posted by nynex on Programmers See other posts from Programmers or by nynex
Published on 2012-08-29T02:17:47Z Indexed on 2012/08/29 3:49 UTC
Read the original article Hit count: 246

Filed under:
|
|

Ok so I'm musing over a little side project I want to start. Essentially its a multi-session web based FTP client. Multi-session in that you can log into several FTP servers at the same time and perform operations like moving a file from one FTP server to another.

I'm doing this mainly to brush up on the new webdev technologies, particularly websockets. I'm using node.js + socket.io to keep a persistent bi-directional connection between the web browser and the web server. The web server will also have persistent connections to each FTP server the user has logged into. So if there are 100 concurrent users each logged into 5 ftp accounts, the web server will have 100 websocket connections + 500 ftp connections.

Is servicing 600 connections a lot? I know it depends on the hardware resources of the server but is something like this doable on a budget? Are there more efficient means of doing something like this? I know its unlikely that this project will really get popular but I want it to scale well regardless.

Thanks for any help, I've still got a lot to learn.

© Programmers or respective owner

Related posts about node.js

Related posts about sockets