Fast JSON encoder/decoder compatible with encoding/json for Go
Go to file
Masaaki Goshima 2625e69825 Fix compile error of zero value 2020-04-22 13:52:42 +09:00
LICENSE Initial commit 2020-04-19 18:32:37 +09:00
README.md Add decoder 2020-04-22 13:06:52 +09:00
benchmark_test.go Add decoder 2020-04-22 13:06:52 +09:00
decode.go Add decoder 2020-04-22 13:06:52 +09:00
decode_test.go Add decoder 2020-04-22 13:06:52 +09:00
encode.go Fix compile error of zero value 2020-04-22 13:52:42 +09:00
encode_string.go Fix public interface for encoding/json 2020-04-21 14:19:50 +09:00
encode_test.go Supports encoding of structure fields that should be ignored 2020-04-21 13:38:48 +09:00
error.go Add decoder 2020-04-22 13:06:52 +09:00
go.mod Add benchmark 2020-04-19 20:27:56 +09:00
go.sum Add benchmark 2020-04-19 20:27:56 +09:00
json.go Add decoder 2020-04-22 13:06:52 +09:00

README.md

go-json

Fast JSON encoder/decoder compatible with encoding/json for Go

Status

WIP

Benchmarks

$ go test -bench .
goos: darwin
goarch: amd64
pkg: github.com/goccy/go-json
Benchmark_Encode_jsoniter-12             5000000               379 ns/op              56 B/op          2 allocs/op
Benchmark_Encode_gojay-12                5000000               273 ns/op             512 B/op          1 allocs/op
Benchmark_Encode_gojson-12               5000000               257 ns/op              48 B/op          1 allocs/op
Benchmark_Decode_jsoniter-12             2000000               846 ns/op             208 B/op         13 allocs/op
Benchmark_Decode_gojay-12                3000000               545 ns/op             256 B/op          2 allocs/op
Benchmark_Decode_gojson-12               3000000               506 ns/op             256 B/op          2 allocs/op
PASS
ok      github.com/goccy/go-json        12.258s

License

MIT