Socket.io: How to count clients in a room with Socket.io-redis adapter

我是研究僧i 提交于 2019-12-20 12:23:23

问题


I start building chat server using Socket.io with multiple nodes. It uses Socket.io-redis to connect all servers together and rooms for messaging.

When a client connects with server I join client to some room.

io.on('connection', function(socket){
  socket.join("CLIENT_1");
});

So I want to get number of clients connected to room "CLIENT_1",

io.sockets.adapter.rooms["CLIENT_1"];

but I only get connection from current process. How can I get connection from all server processes connected through the redis adapter?

I have gone through this question:

How to check socket is alive (connected) in socket.io with multiple nodes and socket.io-redis

but it didn't help me.

Thanks for advance.


回答1:


As of this writing:

The redis adapter extends the base adapter, but it only overrides/adds the following properties:

  • onmessage
  • broadcast
  • add
  • del
  • delAll

With this code of yours:

io.sockets.adapter.rooms["CLIENT_1"];

you are querying the rooms property. This wasn't overridden by the redis adapter, so you're actually querying the base adapter, which only knows about rooms/clients in the current process.

Why didn't the redis adapter override the rooms property? Because in order to match the exact call signature above, it would have to query the redis instance to construct an object containing all rooms and connections every time the property is accessed. Not good. (That is unless you can figure out how to compute object values at the time their values are queried.)

If you want to get the number of connections to the "CLIENT_1" room across all processes in the cluster, you'll have to add that functionality to the adapter itself with a method like this:

/**
   * Count the number of connections in a room.
   *
   * @param {String} room id
   * @param {Function} callback (optional)
   * @api public
   */

  Redis.prototype.numClients = function(room, fn){ ... }

wherein you'll query the redis db instance.

IMO, this should be part of the base adapter interface for all other adapters to implement. It's a common problem.




回答2:


This method works perfectly:

io.sockets.adapter.clients(["room1"], function(err, clients){
  console.log("total clients in room1: %d", clients.length);
})



回答3:


another approach is to use the customRequest/customHook methods in socket.io-redis 3.1.0. I tried and it works. Details here. https://github.com/socketio/socket.io-redis/issues/137



来源:https://stackoverflow.com/questions/30625556/socket-io-how-to-count-clients-in-a-room-with-socket-io-redis-adapter

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!