IM_AG
IM_AG

Reputation: 518

What WebSocket server for 100,000 concurrent connections?

Is there any websocket server, which could serve up to 100,000 connections? I expect the implementation of websockets be built upon RFC-6455

Upvotes: 4

Views: 2493

Answers (3)

Carlos Aguilar
Carlos Aguilar

Reputation: 51

You can try with Tornado webserver. Tornado has a webs ockets implementation. See http://bret.appspot.com/entry/web-sockets-in-tornado

Upvotes: 0

ccleve
ccleve

Reputation: 15809

Try Netty. It's designed for high-performance servers. It has a web sockets implementation. See this blog post.

Upvotes: 4

Jani Hartikainen
Jani Hartikainen

Reputation: 43273

Yes, any server will probably handle that if you throw enough hardware at it.

Upvotes: -2

Related Questions