Johan Sommerfeld

Results 40 comments of Johan Sommerfeld

Another thing I just ran into, when using `node.send` we want the destination to be `(node, process)` but when we send from erlang we use `{Process, Node)` isn't it better...

Nice I'll try to fix that. I'm somewhat done with base parts in my repo for asyncio https://github.com/s2hc-johan/Pyrlang/commits/pyrlang2-asyncio Feels quite performant, almost no sleeps (got an idea to remove them...

is the ping a pyrlang thing or an erlang thing. If erlang thing how does the erlang nodes handle this?

so I found that we're blindly responding to a ping https://github.com/s2hc-johan/Pyrlang/blob/pyrlang2-asyncio/pyrlang2/dist_proto/base_dist_protocol.py#L376 so that becomes a endless loop. There is really no reason to respond to that since both client and...

So I've updated the branch. looks ok. One problem that I found is that monitor is not async so when I try to monitor a process and it does a...

whops, that’s really old we’re now using asyncio instead of an engine object design. The examples are the most updated I think. I’ll try to get them up to pip...

yes, but the code has unfortunately diverged from the documentation. Also there were some hickups that made the installation a bit weird so we decided not to push it to...

yea, it’s working. An old client of mine is using it in a quite big production system. Unfortunately I’m not working on that project any more and if I understand...

@samrose for sure. I'm trying to make a new version of it with simplified startup, so updated documentation would be welcomed. You can write it in md for mkdocs

Nice catch. I’ll check that out. The intention when I created it was for pyrlang to be started as a node so in the common workerflow it should be the...