[go-nuts] Re: Issue with integration test coverage

2023-07-12 Thread savita juyal
Thank you so much Brian for helping me identify the problem. Now I am using kill -2 to pass SIGINT to the process, with this program is exiting politely and we are getting covcounter files. Regards Savita Juyal On Tuesday, July 11, 2023 at 7:18:57 PM UTC+5:30 Brian Candler wrote: > Why are you

[go-nuts] How to minimize RAM usage during Go binary compilation

2023-07-12 Thread Jason Kulatunga
Hi, I’m doing something a bit unusual with my application and I’m trying to figure out if there’s a better way to do this that I’m missing. Basically my application Fasten Health is designed to allow patients to pull their medical records from h

Re: [go-nuts] How to minimize RAM usage during Go binary compilation

2023-07-12 Thread 'Sean Liao' via golang-nuts
considering it is primarily static information, maybe it should be passed in and as data during run time, instead of being embedded and compiled as code? - sean On Wed, Jul 12, 2023, 13:18 Jason Kulatunga wrote: > Hi, > > I’m doing something a bit unusual with my application and I’m trying to >

Re: [go-nuts] How to minimize RAM usage during Go binary compilation

2023-07-12 Thread Diego Joss
Or it could be embedded using package embed (https://pkg.go.dev/embed). Just another candidate solution. -- Diego On Wed, 12 Jul 2023 at 14:30, 'Sean Liao' via golang-nuts < golang-nuts@googlegroups.com> wrote: > considering it is primarily static information, maybe it should be passed > in and