José Valim

Results 1853 comments of José Valim

A pull request is welcome. If we can't find a name under the form, perhaps we should fallback to checking if the form has an ID and, if so, lookup...

@elliottneilclark there are some tricks we could do: * On HTTP 1, we send connection close but we keep the process around to be adopted as a LiveView later. No...

I just realized that the reconnection approach has some complications. If the client crashes, LiveView doesn't know if the client has received the last message or not. So in order...

Our concern is not related on how to track the state on the server/cluster, that's doable, but the interactions between client and server. The issue is both that LiveView doesn't...

Process registration is not an actual problem here. Each process in an Erlang cluster is uniquely identified by its PID. We can send the PID to the client, wrapped in...

a. Bandit and cowboy use different process models d. Needs to be verified f. Needs to be verified However, after coming back to this issue with a fresh mind Today,...

The pitfalls have been mentioned above. You can’t really assume all data can be transferred across nodes and just work. ETS, NIF resources, linked processes and any sort of data...

And the swarm cache you mentioned above is one of the types of caches I had in mind, so we are agreeing on the same fallback.

> involve passing user data over what could be a wire at times though the intent was always to only pass along well defined variables, similar to, including or coincident...

Could you have forgotten to push `doc_html.erl`? :) Btw, we have a module in Elixir for converting markdown to ansi/shell. I assume that if you only care about ansi/shell, it...