Re: [go-nuts] Learning the runtime

2020-03-04 Thread 'Keith Randall' via golang-nuts
There are a bunch of talks from Gophercon and elsewhere that cover pieces of the runtime: Channels: https://www.youtube.com/watch?v=KBZlN0izeiY Scheduler: https://www.youtube.com/watch?v=YHRO5WQGh0k Maps: https://www.youtube.com/watch?v=Tl7mi9QmLns [shameless self plug] Goroutines, defers, stacks

Re: [go-nuts] Learning the runtime

2020-03-04 Thread Ian Lance Taylor
On Tue, Mar 3, 2020 at 9:15 PM wrote: > > Is there any way to learn the internals of the runtime package, besides just > reading all the code? There are a lot of types in the package with cryptic > names and no documentation, so if all I have is the code, it's going to be a > steep learning cur

[go-nuts] Learning the runtime

2020-03-03 Thread buchanae
Is there any way to learn the internals of the runtime package, besides just reading all the code? There are a lot of types in the package with cryptic names and no documentation, so if all I have is the code, it's going to be a steep learning curve. -- You received this message because you ar