On Wed, Mar 14, 2018 at 8:50 AM, bronze man <bronze1...@gmail.com> wrote: > > I just found that sync.Pool is almost equal to calloc/free in c language to > program except that forgot call free will not cause a memory leak.
I wouldn't say that. Calling Pool.Put reserves the memory for that specific pool, unlike free which releases the memory for any other use. > I currently use sync.Pool to make the golang program use less memory. > So why not just add unsafe.FreeMemory to the program. Let the programer > decide to whether to manually free memory or not? > My idea of unsafe.FreeMemory is working with the gc system, just tell the > system to reuse the memory of a stuff before gc happen.It is not the same as > https://github.com/golang/go/issues/13761 > Another gain is that the runtime can auto add unsafe.FreeMemory to the > result code when the compiler found that the object can be freed ealier. > I guess there are reasons that `unsafe.FreeMemory` is not implement: > * Garbage Collection with FreeMemory api is very difficult to implement. > * `unsafe.FreeMemory` is just a source of bugs. but `sync.Pool` is also a > source of bugs, they do not have any big different. > * `unsafe.FreeMemory` memory reuse is not as efficient as sync.Pool.Put. > * The developer of just hate calloc/free api. > * add FreeMemory api to golang just make the runtime too complex. Pools are memory safe. If you accidentally keep using an object that was passed to Pool.Put, your program may have aliasing errors due to reusing the object after a call to Pool.Get, but it will not have any memory errors. An error in the use of unsafe.FreeMemory could create dangling pointers that could create arbitrary memory errors and inscrutable crashes. Go is intended to be a memory safe language. Go's GC is efficient and works well. There is no reason to permit programs to mark memory as free, and there are good reasons for not permitting it. Ian -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.