WanliTian
WanliTian
``` package person import ( "encoding/json" ) type Person struct { Name string Sex bool Content json.RawMessage } ``` ``` var pstr string = ` { "Name":"tian", "Sex":true, "Content:":{ "Hight":183...
go version: go version go1.6.2 linux/amd64 problem: go build, and i get this:internal compiler error: large ONEW with EscNone: new() then i found this:https://github.com/golang/go/issues/11728 it seems to be a bug...
i think it's better to add panic recover for each worker go routine && i see #1 has add this feature, but i cannot see this code in the master...