You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jun 14, 2023. It is now read-only.
We could use goroutines to speed it up, but we could lose a lot of that gain by needing to communicate over a channel to return the results (been reading that channels are a bit of a bottleneck).
Food for thought - maybe for broadcasts 3 or more, we do a goroutine approach, but 2 we do serially? We'd have to bench it
Right now we broadcast serially.
We could use goroutines to speed it up, but we could lose a lot of that gain by needing to communicate over a channel to return the results (been reading that channels are a bit of a bottleneck).
Food for thought - maybe for broadcasts 3 or more, we do a goroutine approach, but 2 we do serially? We'd have to bench it