Re: [go-nuts] 2.5x higher memory usage with go1.8rc2

2017-01-26 Thread Aurélien Bombo
Any update on this? I'm curious. Aurélien Bombo 2017-01-24 23:20 GMT+01:00 tsuna : > Hi there, > I have a linux/386 production binary that I compiled and deployed with > go1.8rc2 and I noticed that the RSS is 2.5x of the same binary doing > the same thing but compiled with

[go-nuts] Is there an easy way to check if two named types are identical across packages?

2016-06-14 Thread Aurélien Bombo
It's my understanding that the type checker considers named types identical only if they're represented by the same pointer. Thus it makes sense for types.Identical and typeutil.Hasher.Hash to return incoherent results for say, type a.MyInt int and type b.MyInt int in packages a and b respectivel