Jump to content
php.lv forumi
  • 0

Socket.io Online lietotāju skaits


Blumish

Question

Čats izmantojot socket.io. Viss funkcionē, bet ir problēma ar tiešsaistes lietotāju skaitu. Tiklīdz tiek atvērta jauna cilne tiešsaistes lietotāju skaitam tiek pievienots jauns lietotājs. Ja atveru 10 jaunas cilnes, pieskaitas 10 jauni tiešsaistes lietotāji. Lietotāju skaitam ir jābūt unikālai IP summai! Paldies! 

Savienošanās

io.on("connection", async (socket) => {
  // push current user in sockets
  sockets.push(socket);

  // get all users
  const allSockets = await io.allSockets();

  // emit the size of allSockets
  io.emit("numberOfOnline", allSockets.size);

Atvienošanās

    // remove the current user in sockets, searching, and notAvailable array if the user disconnects
    sockets = sockets.filter((user) => user.id !== socket.id);
    searching = searching.filter((user) => user.id !== socket.id);
    notAvailable = notAvailable.filter((user) => user.id !== socket.id);
  });

  socket.on("disconnect", async () => {
    // get all users
    const allSockets = await io.allSockets();

    // emit the size of allSockets
    io.emit("numberOfOnline", allSockets.size);
  });

Paldies!

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

https://stackoverflow.com/questions/6458083/get-the-clients-ip-address-in-socket-io

1. links, 1. atbilde. Vai tālākais arī jāapskaidro?

Pirmo vajag pamēģināt pameklēt tīklos un noteikti atradīsi. Lielāku veiksmi radīsi, postojot StackOverFlow'ā sāpošo problēmu, ja tomēr nekas neatrodas. Šeit tas community nav gana liels, lai gana fiksi kāds atbildētu (ja vēl gribētu).

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...