goodboy
goodboy
I'm thinking we should do a rewrite of this using the new bi-dir streaming + `MsgStream.subscribe()` apis and completely drop this internal subsystem.
resource dump, will do writeup later. internal existing issues: https://github.com/goodboy/tractor/issues/184 resources to work toward our own discovery sys: https://en.wikipedia.org/wiki/Fallacies_of_distributed_computing https://spec.matrix.org/unstable/server-server-api/#room-state-resolution https://spec.matrix.org/unstable/rooms/v2/ https://en.wikipedia.org/wiki/Multicast_DNS https://en.wikipedia.org/wiki/Name_Service_Switch https://en.wikipedia.org/wiki/Link-Local_Multicast_Name_Resolution https://en.wikipedia.org/wiki/Zero-configuration_networking#Name_service_discovery https://en.wikipedia.org/wiki/Service_Location_Protocol https://en.wikipedia.org/wiki/Peer_Name_Resolution_Protocol https://en.wikipedia.org/wiki/Name_Service_Switch https://raft.github.io/raft.pdf
The readme update in #163 also mentions maybe adding some diagrams for both messaging / protocols docs and supervision trees stuff: >add some process tree diagrams using both something like...
There was a project i saw recently that had a sphinx theme I really loved; too bad can't find it again. It had the automatic toc arrows pointing to the...
@ryanhiebert oh nice! Yeah this is definitely getting closer. I'm looking for a very simple black and white theme and a nice big logo. This is one of the closest...
So `sphinx-book-theme` turns out to be the same one that `ray` uses. I like a lot about it but think it could be simplified a bit to fit the style...
Made https://github.com/executablebooks/sphinx-book-theme/issues/365 to address missing logo stuff. @Fuyukai also mentioned in chat that our github badge link is borked 😿
`tractor/trionics/_mngrs.py:90: error: Argument 1 to "tuple" has incompatible type "ValuesView[Optional[Any]]"; expected "Iterable[T]"` wat.
How's that 2nd example @fjarri for a class / [ray style](https://docs.ray.io/en/latest/actors.html) actors api?
@fjarri thanks so much for the writeup 👍🏼. I'll address these in order: > how can a child send a message to its paren ```python async with tractor.wait_for_actor('parent_name') as portal:...