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

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