Comment on Clojure core.async and Go: A Code ComparisonparentComments−sambeau13y"The problem with using a goroutine as a generator is that if you abandon it, it will not get garbage collected."It's also slow.https://groups.google.com/forum/#!topic/golang-nuts/v6m86sTR...−JulianMorrison13yMy design relies on pre-loading the channel's buffer and doesn't use a goroutine.
Comments
"The problem with using a goroutine as a generator is that if you abandon it, it will not get garbage collected."
It's also slow.
https://groups.google.com/forum/#!topic/golang-nuts/v6m86sTR...
My design relies on pre-loading the channel's buffer and doesn't use a goroutine.