On Saturday, May 5, 2018 at 6:27:54 AM UTC-4, [email protected] wrote: > > debug.SetGCPercent(-1) > stops the issue occurring - so I think we're onto a winner with the > garbage collection idea! Is there something I'm doing wrong that is causing > this GC binning off all of my go routines? >
You have a busy loop which you need to fix. Also, never branch based on the length of a channel being used concurrently. It's safe to read the value, but it's pretty much meaningless since it could change again before any action can be taken. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
