周玉环 d906a41c2e first commit 2 gün önce
..
.codecov.yml d906a41c2e first commit 2 gün önce
.gitignore d906a41c2e first commit 2 gün önce
.travis.yml d906a41c2e first commit 2 gün önce
Gopkg.lock d906a41c2e first commit 2 gün önce
Gopkg.toml d906a41c2e first commit 2 gün önce
LICENSE d906a41c2e first commit 2 gün önce
README.md d906a41c2e first commit 2 gün önce
adapter.go d906a41c2e first commit 2 gün önce
any.go d906a41c2e first commit 2 gün önce
any_array.go d906a41c2e first commit 2 gün önce
any_bool.go d906a41c2e first commit 2 gün önce
any_float.go d906a41c2e first commit 2 gün önce
any_int32.go d906a41c2e first commit 2 gün önce
any_int64.go d906a41c2e first commit 2 gün önce
any_invalid.go d906a41c2e first commit 2 gün önce
any_nil.go d906a41c2e first commit 2 gün önce
any_number.go d906a41c2e first commit 2 gün önce
any_object.go d906a41c2e first commit 2 gün önce
any_str.go d906a41c2e first commit 2 gün önce
any_uint32.go d906a41c2e first commit 2 gün önce
any_uint64.go d906a41c2e first commit 2 gün önce
build.sh d906a41c2e first commit 2 gün önce
config.go d906a41c2e first commit 2 gün önce
fuzzy_mode_convert_table.md d906a41c2e first commit 2 gün önce
iter.go d906a41c2e first commit 2 gün önce
iter_array.go d906a41c2e first commit 2 gün önce
iter_float.go d906a41c2e first commit 2 gün önce
iter_int.go d906a41c2e first commit 2 gün önce
iter_object.go d906a41c2e first commit 2 gün önce
iter_skip.go d906a41c2e first commit 2 gün önce
iter_skip_sloppy.go d906a41c2e first commit 2 gün önce
iter_skip_strict.go d906a41c2e first commit 2 gün önce
iter_str.go d906a41c2e first commit 2 gün önce
jsoniter.go d906a41c2e first commit 2 gün önce
pool.go d906a41c2e first commit 2 gün önce
reflect.go d906a41c2e first commit 2 gün önce
reflect_array.go d906a41c2e first commit 2 gün önce
reflect_dynamic.go d906a41c2e first commit 2 gün önce
reflect_extension.go d906a41c2e first commit 2 gün önce
reflect_json_number.go d906a41c2e first commit 2 gün önce
reflect_json_raw_message.go d906a41c2e first commit 2 gün önce
reflect_map.go d906a41c2e first commit 2 gün önce
reflect_marshaler.go d906a41c2e first commit 2 gün önce
reflect_native.go d906a41c2e first commit 2 gün önce
reflect_optional.go d906a41c2e first commit 2 gün önce
reflect_slice.go d906a41c2e first commit 2 gün önce
reflect_struct_decoder.go d906a41c2e first commit 2 gün önce
reflect_struct_encoder.go d906a41c2e first commit 2 gün önce
stream.go d906a41c2e first commit 2 gün önce
stream_float.go d906a41c2e first commit 2 gün önce
stream_int.go d906a41c2e first commit 2 gün önce
stream_str.go d906a41c2e first commit 2 gün önce
test.sh d906a41c2e first commit 2 gün önce

README.md

Sourcegraph GoDoc Build Status codecov rcard License Gitter chat

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

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 jsoniter "github.com/json-iterator/go"

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

Replace

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

with

import jsoniter "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