No Description

Tao Wen 2a93f9003e fix #244 use BinaryAsStringExtension to make []byte pretty, while the output is valid json, but it can not be decoded by other json codec, as \x01 is decoded as \x01 by them, which is not original input 7 years ago
any_tests fff342fd04 gofmt 7 years ago
api_tests fff342fd04 gofmt 7 years ago
benchmarks fff342fd04 gofmt 7 years ago
extension_tests fff342fd04 gofmt 7 years ago
extra 2a93f9003e fix #244 use BinaryAsStringExtension to make []byte pretty, while the output is valid json, but it can not be decoded by other json codec, as \x01 is decoded as \x01 by them, which is not original input 7 years ago
misc_tests fff342fd04 gofmt 7 years ago
skip_tests fff342fd04 gofmt 7 years ago
type_tests fff342fd04 gofmt 7 years ago
value_tests 9472474ffd test []byte behavior 7 years ago
.codecov.yml b74ffb2e03 import github.com/stretchr/testify/require 8 years ago
.gitignore 051434fab7 fix #198, use dep for vendoring 8 years ago
.travis.yml f29a0391bc travis: add 1.x to go versions 8 years ago
Gopkg.lock 0ac74bba4a upgrade reflect2 7 years ago
Gopkg.toml 0ac74bba4a upgrade reflect2 7 years ago
LICENSE 923358c07e Initial commit 9 years ago
README.md bca911dae0 Update README.md 7 years ago
adapter.go be70f29b04 detect remaining bytes 7 years ago
any.go fff342fd04 gofmt 7 years ago
any_array.go 3d39af6dd9 remove feature prefix 7 years ago
any_bool.go 3d39af6dd9 remove feature prefix 7 years ago
any_float.go 3d39af6dd9 remove feature prefix 7 years ago
any_int32.go 3d39af6dd9 remove feature prefix 7 years ago
any_int64.go 3d39af6dd9 remove feature prefix 7 years ago
any_invalid.go 3d39af6dd9 remove feature prefix 7 years ago
any_nil.go 3d39af6dd9 remove feature prefix 7 years ago
any_number.go 3d39af6dd9 remove feature prefix 7 years ago
any_object.go 3d39af6dd9 remove feature prefix 7 years ago
any_str.go c99d73acd0 rename 7 years ago
any_uint32.go 3d39af6dd9 remove feature prefix 7 years ago
any_uint64.go 3d39af6dd9 remove feature prefix 7 years ago
build.sh 051434fab7 fix #198, use dep for vendoring 8 years ago
config.go fff342fd04 gofmt 7 years ago
config_with_sync_map.go a3fdd37b9a use sync.Pool 7 years ago
config_without_sync_map.go a3fdd37b9a use sync.Pool 7 years ago
example_test.go fff342fd04 gofmt 7 years ago
fuzzy_mode_convert_table.md 779c3e2164 update conversion table 8 years ago
iter.go 3d39af6dd9 remove feature prefix 7 years ago
iter_array.go 3d39af6dd9 remove feature prefix 7 years ago
iter_float.go 3d39af6dd9 remove feature prefix 7 years ago
iter_int.go ebe943a4a6 fix #241, support 32bit platform 7 years ago
iter_object.go 3d39af6dd9 remove feature prefix 7 years ago
iter_skip.go 3d39af6dd9 remove feature prefix 7 years ago
iter_skip_sloppy.go 3d39af6dd9 remove feature prefix 7 years ago
iter_skip_sloppy_test.go 3d39af6dd9 remove feature prefix 7 years ago
iter_skip_strict.go 3d39af6dd9 remove feature prefix 7 years ago
iter_str.go 3d39af6dd9 remove feature prefix 7 years ago
jsoniter.go f0487718f6 document public symbols 8 years ago
pool.go a3fdd37b9a use sync.Pool 7 years ago
reflect.go fff342fd04 gofmt 7 years ago
reflect_array.go fff342fd04 gofmt 7 years ago
reflect_dynamic.go fff342fd04 gofmt 7 years ago
reflect_extension.go fff342fd04 gofmt 7 years ago
reflect_json_number.go fff342fd04 gofmt 7 years ago
reflect_json_raw_message.go fff342fd04 gofmt 7 years ago
reflect_map.go fff342fd04 gofmt 7 years ago
reflect_marshaler.go fff342fd04 gofmt 7 years ago
reflect_native.go fff342fd04 gofmt 7 years ago
reflect_optional.go fff342fd04 gofmt 7 years ago
reflect_slice.go fff342fd04 gofmt 7 years ago
reflect_struct_decoder.go fff342fd04 gofmt 7 years ago
reflect_struct_encoder.go fff342fd04 gofmt 7 years ago
stream.go 2a93f9003e fix #244 use BinaryAsStringExtension to make []byte pretty, while the output is valid json, but it can not be decoded by other json codec, as \x01 is decoded as \x01 by them, which is not original input 7 years ago
stream_float.go 3d39af6dd9 remove feature prefix 7 years ago
stream_int.go fff342fd04 gofmt 7 years ago
stream_str.go 3d39af6dd9 remove feature prefix 7 years ago
stream_test.go 3d39af6dd9 remove feature prefix 7 years ago
test.sh e7c7f3b337 fix coverage 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

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