loic boulet ec23f007bc init byop-engine 2 달 전
..
.codecov.yml ec23f007bc init byop-engine 2 달 전
.gitignore ec23f007bc init byop-engine 2 달 전
.travis.yml ec23f007bc init byop-engine 2 달 전
Gopkg.lock ec23f007bc init byop-engine 2 달 전
Gopkg.toml ec23f007bc init byop-engine 2 달 전
LICENSE ec23f007bc init byop-engine 2 달 전
README.md ec23f007bc init byop-engine 2 달 전
adapter.go ec23f007bc init byop-engine 2 달 전
any.go ec23f007bc init byop-engine 2 달 전
any_array.go ec23f007bc init byop-engine 2 달 전
any_bool.go ec23f007bc init byop-engine 2 달 전
any_float.go ec23f007bc init byop-engine 2 달 전
any_int32.go ec23f007bc init byop-engine 2 달 전
any_int64.go ec23f007bc init byop-engine 2 달 전
any_invalid.go ec23f007bc init byop-engine 2 달 전
any_nil.go ec23f007bc init byop-engine 2 달 전
any_number.go ec23f007bc init byop-engine 2 달 전
any_object.go ec23f007bc init byop-engine 2 달 전
any_str.go ec23f007bc init byop-engine 2 달 전
any_uint32.go ec23f007bc init byop-engine 2 달 전
any_uint64.go ec23f007bc init byop-engine 2 달 전
build.sh ec23f007bc init byop-engine 2 달 전
config.go ec23f007bc init byop-engine 2 달 전
fuzzy_mode_convert_table.md ec23f007bc init byop-engine 2 달 전
iter.go ec23f007bc init byop-engine 2 달 전
iter_array.go ec23f007bc init byop-engine 2 달 전
iter_float.go ec23f007bc init byop-engine 2 달 전
iter_int.go ec23f007bc init byop-engine 2 달 전
iter_object.go ec23f007bc init byop-engine 2 달 전
iter_skip.go ec23f007bc init byop-engine 2 달 전
iter_skip_sloppy.go ec23f007bc init byop-engine 2 달 전
iter_skip_strict.go ec23f007bc init byop-engine 2 달 전
iter_str.go ec23f007bc init byop-engine 2 달 전
jsoniter.go ec23f007bc init byop-engine 2 달 전
pool.go ec23f007bc init byop-engine 2 달 전
reflect.go ec23f007bc init byop-engine 2 달 전
reflect_array.go ec23f007bc init byop-engine 2 달 전
reflect_dynamic.go ec23f007bc init byop-engine 2 달 전
reflect_extension.go ec23f007bc init byop-engine 2 달 전
reflect_json_number.go ec23f007bc init byop-engine 2 달 전
reflect_json_raw_message.go ec23f007bc init byop-engine 2 달 전
reflect_map.go ec23f007bc init byop-engine 2 달 전
reflect_marshaler.go ec23f007bc init byop-engine 2 달 전
reflect_native.go ec23f007bc init byop-engine 2 달 전
reflect_optional.go ec23f007bc init byop-engine 2 달 전
reflect_slice.go ec23f007bc init byop-engine 2 달 전
reflect_struct_decoder.go ec23f007bc init byop-engine 2 달 전
reflect_struct_encoder.go ec23f007bc init byop-engine 2 달 전
stream.go ec23f007bc init byop-engine 2 달 전
stream_float.go ec23f007bc init byop-engine 2 달 전
stream_int.go ec23f007bc init byop-engine 2 달 전
stream_str.go ec23f007bc init byop-engine 2 달 전
test.sh ec23f007bc init byop-engine 2 달 전

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