Johan Sommerfeld

Results 40 comments of Johan Sommerfeld

a quick google shown something about the install procedure needed to be pypy. Maybe we haven't written setup.py well enough to work natively with pypy. Don't run pypy so I...

@kvakvs poking around the Process and gen_server a bit. Thinking of restructuring a bit in `gen.py` So one is apparently something for the RPC thing and the other one is...

Hi, yea we preped for it, but then I didn't get it up. Sorry I'll try to get it up again. you can check it out and install locally, if...

Yes it is, what os are you using? Term is binary or you need rust installed to get it performant

I've started to work on this now. I've rebased the branch onto master and pushed it to my repo. https://github.com/s2hc-johan/Pyrlang/tree/pyrlang2-asyncio I think I've managed to get the examples running. But...

@kvakvs thanks for the clarification Ok, so everything that uses network or similar is going `async` however what I thought of was how we're going to make the interface of...

@kvakvs I’m following the _nowait nomenclature Asyncio uses. How about passive mode for process. Is that something you made for CPU considerations or is it mirroring a function in Erlang....

@kvakvs As I'm working with process and gen server one thing came to mind. The loop thing we do in process, even though that is what many people will want,...

I'm already done with that, testing it out right now. The thing was to remvoe the infinit receive loop in process, since that isn't part of an erlang process right.

exactly so don't we mimic it better with a `run` function in process, you can build whatever logic you want, calling receive as you like. Then in gen_server we implement...