wenzuochao 69663be27b rm oss 6 年 前
..
.codecov.yml 2bae7c1b7e Make the json.Unmarshal more robust 8 年 前
.gitignore 06fdc4e77f log 7 年 前
.travis.yml 2bae7c1b7e Make the json.Unmarshal more robust 8 年 前
Gopkg.lock 6e81423f22 update dependency (#197) 6 年 前
Gopkg.toml 6e81423f22 update dependency (#197) 6 年 前
LICENSE 2bae7c1b7e Make the json.Unmarshal more robust 8 年 前
README.md 69663be27b rm oss 6 年 前
adapter.go 69663be27b rm oss 6 年 前
any.go 69663be27b rm oss 6 年 前
any_array.go 06fdc4e77f log 7 年 前
any_bool.go 06fdc4e77f log 7 年 前
any_float.go 06fdc4e77f log 7 年 前
any_int32.go 06fdc4e77f log 7 年 前
any_int64.go 06fdc4e77f log 7 年 前
any_invalid.go 06fdc4e77f log 7 年 前
any_nil.go 06fdc4e77f log 7 年 前
any_number.go 06fdc4e77f log 7 年 前
any_object.go 06fdc4e77f log 7 年 前
any_str.go 06fdc4e77f log 7 年 前
any_uint32.go 06fdc4e77f log 7 年 前
any_uint64.go 06fdc4e77f log 7 年 前
build.sh 06fdc4e77f log 7 年 前
config.go 6e81423f22 update dependency (#197) 6 年 前
fuzzy_mode_convert_table.md 2bae7c1b7e Make the json.Unmarshal more robust 8 年 前
go.mod 69663be27b rm oss 6 年 前
go.sum 69663be27b rm oss 6 年 前
iter.go 06fdc4e77f log 7 年 前
iter_array.go 06fdc4e77f log 7 年 前
iter_float.go 69663be27b rm oss 6 年 前
iter_int.go 06fdc4e77f log 7 年 前
iter_object.go 6e81423f22 update dependency (#197) 6 年 前
iter_skip.go 69663be27b rm oss 6 年 前
iter_skip_sloppy.go 06fdc4e77f log 7 年 前
iter_skip_strict.go 69663be27b rm oss 6 年 前
iter_str.go 06fdc4e77f log 7 年 前
jsoniter.go 2bae7c1b7e Make the json.Unmarshal more robust 8 年 前
pool.go 6e81423f22 update dependency (#197) 6 年 前
reflect.go 6e81423f22 update dependency (#197) 6 年 前
reflect_array.go 06fdc4e77f log 7 年 前
reflect_dynamic.go 06fdc4e77f log 7 年 前
reflect_extension.go 69663be27b rm oss 6 年 前
reflect_json_number.go 06fdc4e77f log 7 年 前
reflect_json_raw_message.go 06fdc4e77f log 7 年 前
reflect_map.go 69663be27b rm oss 6 年 前
reflect_marshaler.go 69663be27b rm oss 6 年 前
reflect_native.go 69663be27b rm oss 6 年 前
reflect_optional.go 06fdc4e77f log 7 年 前
reflect_slice.go 06fdc4e77f log 7 年 前
reflect_struct_decoder.go 69663be27b rm oss 6 年 前
reflect_struct_encoder.go 06fdc4e77f log 7 年 前
stream.go 06fdc4e77f log 7 年 前
stream_float.go 69663be27b rm oss 6 年 前
stream_int.go 06fdc4e77f log 7 年 前
stream_str.go 06fdc4e77f log 7 年 前
test.sh 06fdc4e77f log 7 年 前

README.md

Sourcegraph GoDoc Build Status codecov rcard License Gitter chat

A high-performance 100% compatible drop-in replacement of "encoding/json"

You can also use thrift like JSON using thrift-iterator

Benchmark

benchmark

Source code: https://github.com/json-iterator/go-benchmark/blob/master/src/github.com/json-iterator/go-benchmark/benchmark_medium_payload_test.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

Always benchmark with your own workload. The result depends heavily on the data input.

Usage

100% compatibility with standard lib

Replace

import "encoding/json"
json.Marshal(&data)

with

import "github.com/json-iterator/go"

var json = jsoniter.ConfigCompatibleWithStandardLibrary
json.Marshal(&data)

Replace

import "encoding/json"
json.Unmarshal(input, &data)

with

import "github.com/json-iterator/go"

var json = jsoniter.ConfigCompatibleWithStandardLibrary
json.Unmarshal(input, &data)

More documentation

How to get

go get github.com/json-iterator/go

Contribution Welcomed !

Contributors

Report issue or pull request, or email taowen@gmail.com, or Gitter chat