Comment on Resource efficient Thread Pools with ZigComments−goodpoint4yHow does it compare to Nim's Weave thread manager?−chris_st4yNim newby here -- does Nim have something analogous to Go's channels for inter-thread communication?−goodpoint4yYes, it has channels as a built-in:https://nim-lang.org/docs/channels.htmlThings like Weave abstract away the need to manage threads and messaging explicitly.
Comments
How does it compare to Nim's Weave thread manager?
Nim newby here -- does Nim have something analogous to Go's channels for inter-thread communication?
Yes, it has channels as a built-in:
https://nim-lang.org/docs/channels.html
Things like Weave abstract away the need to manage threads and messaging explicitly.