From: Diego Bernardes Date: 2009-05-15T05:37:05+09:00 Subject: 1k+ concurrent connections I have tons of gprs modems that connect at the same port(ex 9000), but inside our network, every modem should have a unique port so the applications can talk with they. The application its simple, i get a connection request, authenticate the request on radius(a authentication server AAA), if everything allright, i start listening on a random port. So every application i have can send data to that port, and the modem can send data back to the application too. Today i have something like 1k concurrent connections, but i expect that this number increase alot soon, maybe 3k or even more.... The application was made in c#, but dosent seam so good, need restart all day, its slow and so... I need rewrite, and now is my question, what should i use? Ruby can handle using some network frakework like eventmachine? Java? Erlang? C? Don't know, just need some advice... -- Posted via http://www.ruby-forum.com/.