Reputation: 518
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
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
Reputation: 15809
Try Netty. It's designed for high-performance servers. It has a web sockets implementation. See this blog post.
Upvotes: 4
Reputation: 43273
Yes, any server will probably handle that if you throw enough hardware at it.
Upvotes: -2