[go-nuts] Re: building rss aggregator (thousands of goroutines sleeps at the same time)

2016-11-06 Thread Jaroslaw Lisicki
go is perfectly fine with such amount of goroutines. Of course you should be aware of memory consumption, probably few hundred of megabytes (each goroutiine need at least 2kB). I think you should focus on avoiding to many goroutines at the same time (this could slow down your webserver) and lim

[go-nuts] Re: building rss aggregator (thousands of goroutines sleeps at the same time)

2016-11-05 Thread Viktor Kojouharov
It's quite efficient to have a lot of goroutines. That's how I update the feeds in my aggregator. Though your network interface might not like it if you try to initiate thousands of connections at the same time. On Friday, November 4, 2016 at 11:14:24 PM UTC+2, Marwan abdel moneim wrote: > > i a