socket.io-restrict每个命名空间的最大连接数

时间:2015-08-24 19:42:52

标签: javascript node.js express socket.io

我在node.js,express和socket.io上构建了一个小的webapp。在其中,我使用两个名称空间创建:

lists = io.of('/lists'),
views = io.of('/view'),

我想做的是限制/views命名空间中的连接数。用socket.io有什么办法吗?我看过文档,但没有找到任何东西。

任何想法如何做到这一点?

提前致谢!

1 个答案:

答案 0 :(得分:3)

您可以创建一个简单的计数器(如果需要 - 扩展该类):

var lists = io.of('/lists');
lists.max_connections = 10;
lists.current_connections = 0;

lists.on('connection', function(socket){
  if (this.current_connections >= this.max_connections) {
    socket.emit('disconnect', 'I\'m sorry, too many connections');
    socket.disconnect();
  } else {
    this.current_connections++;
    socket.on('disconnect', function () {
      this.current_connections--;   
    });
    /** something useful **/ 
  }
});

更新:如果您希望客户端继续尝试连接到服务器,请使用:

socket.conn.close();

相反:

socket.disconnect();