Sean T Allen
Sean T Allen
The installed ponyc is unable to find the correct pony runtime when linking programs.
It is probably interpretting the """ """ not as a string literal but as a docstring. This gives you what I think you were expecting: ``` actor Main new create(env:...
@rhagenson I have no idea why the ellipsis is there.
@rhagenson do you have all the info you need?
re: gc... see the orca paper: https://www.ponylang.io/media/papers/orca_gc_and_type_system_co-design_for_actor_languages.pdf and this video from @aturley: https://vimeo.com/181099993
Number of scheduler threads is N where N is the core count. There is additionally an asio thread that handles receiving asio messages, however, it never runs any actors. When...
Couple of things to know about scheduler threads. You can change the default number using --ponymaxthreads to set to less than N where N is the number of cores. By...
@rhagenson I'm not aware of Dead being used as a term. - Alive -> Scheduled - Muted -> Muted - Blocked -> Unscheduled - Dead -> There is no state...
> For all the runtime-related options, rather than spread them throughout the new chapter, how about a section called "Runtime Options" that is the last section in the chapter and...
@rhagenson well, apparently we are using "Dead" somewhere. I never knew that.