[go-nuts] Re: Why is there a huge gap between the memory profile's inuse_space in pprof and the externally obtained memory footprint?

2024-07-23 Thread 王旭东
Hi, I'm not an expert on pprof (Go) or psutil (Python). But I find this page might be helpful. Thanks, Xudong 在2024年7月20日星期六 UTC+8 15:21:05 写道: > I'm working on the project https://github.com/Zxilly/g

[go-nuts] how to start with go?

2024-07-23 Thread Kowsik Vunnam
Hi everyone I am new to coding and I learned Golang. I dont know how to start contributing or how to search for issues or how to identify issues, My question is how do people identify the issues how do they test the code? -- You received this message because you are subscribed to the Google Gro

[go-nuts] Re: how to start with go?

2024-07-23 Thread James Hawkins
Hi Kowsik, This is a time old statement from many new people to software not just golang. I think to rather brush your experience with a broad stroke you should focus on one thing. Maybe start here https://quii.gitbook.io/learn-go-with-tests TDD has some nice guard rails which will give

Re: [go-nuts] Go 1BRC Challenge and GC Overhead

2024-07-23 Thread 'Marcos Issler' via golang-nuts
Hi Brendan, take a look of this amazing event of Ardan Labs where they explore in depth how to analyze the GC. I think you will find your answer how the GC works and the best way to know how much goroutines vs GC memory use for your best performance. You need to sign in into Ardan Labs but it

[go-nuts] Re: how to start with go?

2024-07-23 Thread Guilherme de Oliveira Amorim
Well, usually, when I want to learn a new programming language, I create a project using the architecture I'm most familiar with, which in this case is Clean Architecture. This way, basic elements of the language are studied in an intuitive and contextualized way. This helps to consolidate the

Re: [go-nuts] Re: how to start with go?

2024-07-23 Thread Robert Engels
A few people have reached out to tell me they found github.com/robaho/go-trader worthwhile when learning. It was a project I initially created to learn Go myself. It touches on all of the major food groups except db access. On Jul 23, 2024, at 9:01 AM, Guilherme de Oliveira Amorim wrote:Well, usu

[go-nuts] Re: how to start with go?

2024-07-23 Thread Guilherme de Oliveira Amorim
Well, usually, when I want to learn a new programming language, I create a project using the architecture I'm most familiar with, which in this case is Clean Architecture. This way, basic elements of the language are studied in an intuitive and contextualized way. This helps to consolidate the

[go-nuts] about 0-RTT in golang std tls 1.3 impl?

2024-07-23 Thread xie cui
does current go version support 0-RTT in clent and server with tls1.3。 I find it may be not. https://github.com/golang/go/blob/90bcc552c0347948166817a602f612f219bc980c/src/crypto/tls/handshake_server_tls13.go#L158 -- You received this message because you are subscribed to the Google Groups "gola