gaort 8524bc22aa support dep 7 years ago
..
skip_tests 8524bc22aa support dep 7 years ago
.codecov.yml 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
.gitignore 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
.travis.yml 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
LICENSE 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
README.md 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_adapter.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_any.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_any_array.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_any_bool.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_any_float.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_any_int32.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_any_int64.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_any_invalid.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_any_nil.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_any_number.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_any_object.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_any_string.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_any_uint32.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_any_uint64.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_config.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_iter.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_iter_array.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_iter_float.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_iter_int.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_iter_object.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_iter_skip.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_iter_skip_sloppy.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_iter_skip_strict.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_iter_string.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_json_number.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_pool.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_reflect.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_reflect_array.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_reflect_extension.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_reflect_map.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_reflect_native.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_reflect_object.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_reflect_slice.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_reflect_struct_decoder.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_stream.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_stream_float.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_stream_int.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
feature_stream_string.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
fuzzy_mode_convert_table.md 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
jsoniter.go 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago
test.sh 2bae7c1b7e Make the json.Unmarshal more robust 8 years ago

README.md

Sourcegraph GoDoc Build Status codecov rcard License Gitter chat

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

Go开发者们请加入我们,滴滴出行平台技术部 taowen@didichuxing.com

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

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