-
If the json name contains characters such as "@" or "-", the nested feature does not work
easyjson.path(pathPackage)
.modify('dependencies[@group/library-core]', coreVersion)
…
-
stdlib json behaviour:
https://play.golang.org/p/6DIsQk0xeMZ
Yet when I use json.Number as type with easyjson it is being Marshaled into a string. From generated file:
`out.String(string(in.P…
-
```
package x
type Foo struct {
Name string `json:"name"`
}
type Bar struct {
Stuff struct {
Foo
Size int `json:"size"`
}
Color string `json:"color"`
}
```
```
package main…
-
We have a use case where we are using easyjson to unmarshal json directly into the structs created by protobuf's protoc.
It has been working really well until the recent update to protobuf, which…
-
I think handler.go should detect that if the user callback argument is string type. Just call the callback directly without json.Unmarshall. Same for send.go, if the args type is string, don't call js…
-
By "pretends to allow", I don't mean that easyjson is doing anything sneaky— just that I think the following situation should be treated as an error, and instead it is treated as acceptable but implem…
-
**User Story**
As a user, I would like to get higher performance for logging.
**Detailed Description**
Try to substitute classic "encoding/json" marshalling/unmarshalling which uses reflectio…
-
Hi! Thanks for a great library, we are using it a lot in our projects.
What I found today interesting in our profiler, that [`easyjson.UnmarshalFromReader`](https://github.com/mailru/easyjson/blob…
-
In the case of `encoding/json`, if I set `Inner` of `Test` struct before unmarshalling, it is kept after unmarshalled. But in the case of easyjson, the generated implementation unconditionally do `new…
-
Hello,
Quoting from [Benchmark Results](https://github.com/mailru/easyjson#benchmark-results)
> ffjson results are from February 4th, 2016, using the latest ffjson and go1.6. go/codec results ar…
ghost updated
3 years ago