[go-nuts] Just because we can add multiple logical processors for the scheduler to use doesn’t mean we should

2016-09-23 Thread William Kennedy
There are many factors that will determine how well your program performs. There are no guarantees that using more threads or goroutines is going to yield better performance. Sometimes throwing more threads or goroutines at a problem can slow things down. It really depends on the work you are

[go-nuts] Just because we can add multiple logical processors for the scheduler to use doesn’t mean we should

2016-09-23 Thread WALID BELRHALMIA
Hello my golang brother, i was reading William kennedy post about Concurency https://www.goinggo.net/2014/01/concurrency-goroutines-and-gomaxprocs.html and at the end he said "Just because we can add multiple logical processors for the scheduler to use doesn’t mean we should" , because i