| commit | 787edc95b0efed27fc0722bcb5e11865dc6d1605 | [log] [tgz] |
|---|---|---|
| author | Tao Wen <[email protected]> | Mon Jun 12 07:07:52 2017 |
| committer | GitHub <[email protected]> | Mon Jun 12 07:07:52 2017 |
| tree | 48193b44e6ded0ae1f4b41e291223c37269829ec | |
| parent | 6e5817b773d6fa6327a2b92bc867c25fca415923 [diff] |
Revert "WIP: Tests to compare against stdlib"
jsoniter (json-iterator) is fast and flexible JSON parser available in Java and Go

Raw Result (easyjson requires static code generation)
| ns/op | allocation bytes | allocation times | |
|---|---|---|---|
| std decode | 35510 ns/op | 1960 B/op | 99 allocs/op |
| easyjson decode | 8499 ns/op | 160 B/op | 4 allocs/op |
| jsoniter decode | 5623 ns/op | 160 B/op | 3 allocs/op |
| std encode | 2213 ns/op | 712 B/op | 5 allocs/op |
| easyjson encode | 883 ns/op | 576 B/op | 3 allocs/op |
| jsoniter encode | 837 ns/op | 384 B/op | 4 allocs/op |
100% compatibility with standard lib
Replace
import "encoding/json"
json.Marshal(&data)
with
import "github.com/json-iterator/go"
jsoniter.Marshal(&data)
Replace
import "encoding/json"
json.Unmarshal(input, &data)
with
import "github.com/json-iterator/go"
jsoniter.Unmarshal(input, &data)
go get github.com/json-iterator/go
Report issue or pull request, or email [email protected], or 