f35fca1c3f | ||
---|---|---|
.. | ||
Gopkg.lock | ||
Gopkg.toml | ||
LICENSE | ||
README.md | ||
build.sh | ||
feature_adapter.go | ||
feature_any.go | ||
feature_any_array.go | ||
feature_any_bool.go | ||
feature_any_float.go | ||
feature_any_int32.go | ||
feature_any_int64.go | ||
feature_any_invalid.go | ||
feature_any_nil.go | ||
feature_any_number.go | ||
feature_any_object.go | ||
feature_any_string.go | ||
feature_any_uint32.go | ||
feature_any_uint64.go | ||
feature_config.go | ||
feature_config_with_sync_map.go | ||
feature_config_without_sync_map.go | ||
feature_iter.go | ||
feature_iter_array.go | ||
feature_iter_float.go | ||
feature_iter_int.go | ||
feature_iter_object.go | ||
feature_iter_skip.go | ||
feature_iter_skip_sloppy.go | ||
feature_iter_skip_strict.go | ||
feature_iter_string.go | ||
feature_json_number.go | ||
feature_pool.go | ||
feature_reflect.go | ||
feature_reflect_array.go | ||
feature_reflect_extension.go | ||
feature_reflect_map.go | ||
feature_reflect_native.go | ||
feature_reflect_object.go | ||
feature_reflect_optional.go | ||
feature_reflect_slice.go | ||
feature_reflect_struct_decoder.go | ||
feature_stream.go | ||
feature_stream_float.go | ||
feature_stream_int.go | ||
feature_stream_string.go | ||
fuzzy_mode_convert_table.md | ||
jsoniter.go | ||
test.sh |
README.md
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
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)
How to get
go get github.com/json-iterator/go
Contribution Welcomed !
Contributors
Report issue or pull request, or email taowen@gmail.com, or