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