标题中的所有内容。
io.on('connection', (socket) => {
socket.join('somepool');
// Here I want to know how many socket's connections are opened in the given pool
// Something like:
io.in('somepool').length;
});
答案 0 :(得分:1)
您可以使用io.sockets.clients('somepool')
让所有连接的客户端和io.sockets.clients('somepool').length
获取连接数。