From: Kirk Haines Date: 2009-05-15T06:06:33+09:00 Subject: Re: 1k+ concurrent connections On Thu, May 14, 2009 at 2:37 PM, Diego Bernardes wrote: > 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? You can exceed that 1k connections threshold if you are using EventMachine on a system that supports epoll (Linux) or kqueue. EM performance is quite good. Whether the rest of your app would be fast or not depends on how you write the code, probably. As for what you should use....use what you are comfortable with. Ruby may or may not be a good choice. If you are unsure, try to prototype what you need, and see how well it works, and how you like it. Kirk Haines