On 09/28/2018 03:04 AM, keith.rand...@gmail.com wrote:
> Objects returned by Get() are not special in any way. They will be GCd
> just like an object returned by new(). In fact, they will often be just
> a new()'d object.
> There is no association of such an object with the pool.  A pool is just
> a fancy free list. Get might return a previously Put'd object instead of
> a new() one.
> 
> Your scheme is unsafe. Storing a *Object as a uintptr means the
> underlying Object will be collected out from under your map.

Ok... thanks... I guess I might have made the wrong assumption about
when objects returned from pool.Get() are subject to garbage collection.

/Peter

-- 
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.

Reply via email to