Code Monkey home page Code Monkey logo

Comments (6)

josevalim avatar josevalim commented on May 23, 2024 1

@tverlaan actually, I think when you leave, you should have the latest meta:

def handle_diff(diff, state) do
for {topic, {joins, leaves}} <- diff do
for {key, meta} <- joins do
IO.puts "presence join: key \"#{key}\" with meta #{inspect meta}"
msg = {:join, key, meta}
Phoenix.PubSub.direct_broadcast!(state.node_name, state.pubsub_server, topic, msg)
end
for {key, meta} <- leaves do
IO.puts "presence leave: key \"#{key}\" with meta #{inspect meta}"
msg = {:leave, key, meta}
Phoenix.PubSub.direct_broadcast!(state.node_name, state.pubsub_server, topic, msg)
end
end
{:ok, state}
end

This latest meta should have your latest changes. Are you using this information in the client?

In case the leave information does not have the latest meta, then that would be a bug. @michalmuskala, this should also provide you a way to pass the exit information, we could add it to the meta under a reserved key.

from phoenix_pubsub.

josevalim avatar josevalim commented on May 23, 2024

Thanks for the report! To add more info, @chrismccord believes this happen somewhere in presence when we are squeezing the joins and leaves together to push to the client (or in the client itself). We currently treat the changes in state as a leave+join so anything that happens in between is condensed.

from phoenix_pubsub.

tverlaan avatar tverlaan commented on May 23, 2024

Would it be possible to update meta when leave+join is condensed? Or will it break when another node has a presence update for the same key?

Can you point me to some documentation or a paper where I can read into the implementation by Phoenix a bit more?

from phoenix_pubsub.

josevalim avatar josevalim commented on May 23, 2024

from phoenix_pubsub.

tverlaan avatar tverlaan commented on May 23, 2024

We were "updating" meta to reflect the process is about to exit clear or fail.

I'll try to get a better understanding of the implementation to see if and/or how we can improve it. Outcome could be documentation as well I think.

from phoenix_pubsub.

michalmuskala avatar michalmuskala commented on May 23, 2024

One way to solve this would be to differentiate (I'm not really sure how) in handle_diff between process explicitly calling untrack and being removed after it died.

from phoenix_pubsub.

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.