| commit | 6e5817b773d6fa6327a2b92bc867c25fca415923 | [log] [tgz] |
|---|---|---|
| author | Tao Wen <[email protected]> | Mon Jun 12 06:47:50 2017 |
| committer | GitHub <[email protected]> | Mon Jun 12 06:47:50 2017 |
| tree | 6fe1c3c891410790c84d0ac0786be6eae159a7ac | |
| parent | 64e500f3c8d04c6dda481655d8aaac8fdb408169 [diff] | |
| parent | 7480e41836d4a0a2fc442e61ff2a766024775963 [diff] |
Merge pull request #55 from thockin/output_tests 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 