[go-nuts] Re: Why golang's garbage collector didn't free obj when an finalizer is associate with it?

2023-11-07 Thread Harish Ganesan
t; performant. > > Other GCs make the same choice. See the Boehm collector > <https://www.hboehm.info/gc/finalization.html>, for example. > On Monday, November 6, 2023 at 10:20:39 AM UTC-5 Harish Ganesan wrote: > >> Does this behaviour mean that, those memory will never be f

[go-nuts] Re: Why golang's garbage collector didn't free obj when an finalizer is associate with it?

2023-11-06 Thread Harish Ganesan
Does this behaviour mean that, those memory will never be freed and keep piling on ? That can be disastrous. On Monday, November 6, 2023 at 3:39:50 PM UTC+5:30 Jan wrote: > For what it's worth, a bit of "memory management" on structures in many > cases is very ok (not sure if in your case). So