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

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