Giter Site home page Giter Site logo

Retrieving number of connected sockets using `fetchSockets` without getting all socket information about socket.io-redis-adapter HOT 5 OPEN

MatanYemini avatar MatanYemini commented on May 29, 2024 1
Retrieving number of connected sockets using `fetchSockets` without getting all socket information

from socket.io-redis-adapter.

Comments (5)

cody-evaluate avatar cody-evaluate commented on May 29, 2024 1

I second this. I do not care if socket count is not always 1 to 1 with user count. I need a way to count sockets without pulling all data over the wire.

from socket.io-redis-adapter.

darrachequesne avatar darrachequesne commented on May 29, 2024

Hi! Yes, as you have noted the fetchSockets() method transfers a lot of data.

You should use the serverSideEmit() method instead:

io.serverSideEmit("hello", "world");

// And on the receiving side:
io.on("hello", (arg1) => {
  console.log(arg1); // prints "world"
});

Reference: https://socket.io/docs/v4/server-instance/#serversideemit

from socket.io-redis-adapter.

MatanYemini avatar MatanYemini commented on May 29, 2024

Yeah. I have used that for now.

@darrachequesne What do you think about adding the "count" as a separate function? You don't think it would be usable?

I have also an example of a patch with a new function.

from socket.io-redis-adapter.

darrachequesne avatar darrachequesne commented on May 29, 2024

What do you think about adding the "count" as a separate function?

I'm not sure that's a good idea, because in most cases I think one wants to count the number of users, not the number of sockets (since a single user can have multiple connections). What do you think?

from socket.io-redis-adapter.

MatanYemini avatar MatanYemini commented on May 29, 2024

@darrachequesne - Sometimes I actually more interested in the sockets as opposed to the users as @cody-evaluate mentioned.

An example (my case) for that is for horizontal scaling purposes

from socket.io-redis-adapter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.