1
0
mirror of https://github.com/json-iterator/go.git synced 2024-11-24 08:22:14 +02:00
A high-performance 100% compatible drop-in replacement of "encoding/json" http://jsoniter.com/migrate-from-go-std.html
Go to file
2017-07-06 16:04:52 +08:00
assert gofmt 2017-06-06 23:27:00 +08:00
extra #71 fixed []byte alias 2017-06-26 14:25:56 +08:00
output_tests fuzzy test from 1000 to 100 2017-07-02 18:18:12 +08:00
require fix 4 fields object decoding 2017-01-06 20:17:47 +08:00
.gitignore test and cover multiple packages 2017-07-02 12:58:14 +08:00
.travis.yml only test against 1.8 2017-07-02 19:26:06 +08:00
example_test.go gofmt 2017-06-19 23:43:53 +08:00
feature_adapter.go #75 support MarshalIndent 2017-06-29 20:48:27 +08:00
feature_any_array.go gofmt 2017-06-19 23:43:53 +08:00
feature_any_bool.go add MustBeValid to Any 2017-06-19 21:21:20 +08:00
feature_any_float.go gofmt 2017-06-19 23:43:53 +08:00
feature_any_int32.go add MustBeValid to Any 2017-06-19 21:21:20 +08:00
feature_any_int64.go add MustBeValid to Any 2017-06-19 21:21:20 +08:00
feature_any_invalid.go add MustBeValid to Any 2017-06-19 21:21:20 +08:00
feature_any_nil.go add MustBeValid to Any 2017-06-19 21:21:20 +08:00
feature_any_number.go gofmt 2017-06-19 23:43:53 +08:00
feature_any_object.go gofmt 2017-06-19 23:43:53 +08:00
feature_any_string.go gofmt 2017-06-19 23:43:53 +08:00
feature_any_uint32.go add MustBeValid to Any 2017-06-19 21:21:20 +08:00
feature_any_uint64.go add MustBeValid to Any 2017-06-19 21:21:20 +08:00
feature_any.go gofmt 2017-06-19 23:43:53 +08:00
feature_config.go #75 support MarshalIndent 2017-06-29 20:48:27 +08:00
feature_iter_array.go #68 number to string 2017-06-20 15:11:01 +08:00
feature_iter_float.go #68 number to string 2017-06-20 15:11:01 +08:00
feature_iter_int.go fix anonymous fields 2017-06-21 00:26:18 +08:00
feature_iter_object.go #68 number to string 2017-06-20 15:11:01 +08:00
feature_iter_skip.go #68 number to string 2017-06-20 15:11:01 +08:00
feature_iter_string.go #68 number to string 2017-06-20 15:11:01 +08:00
feature_iter.go #115 check object end 2017-07-06 16:04:52 +08:00
feature_pool.go #61 removed internal buffer from lazy array and object; jsoniter.Get replaced jsoniter.UnmarshalAny 2017-06-18 22:22:13 +08:00
feature_reflect_array.go gofmt 2017-06-29 20:40:25 +08:00
feature_reflect_extension.go gofmt 2017-07-02 11:56:01 +08:00
feature_reflect_map.go fix 1.6 compatibility 2017-07-02 13:22:55 +08:00
feature_reflect_native.go gofmt 2017-07-02 11:56:01 +08:00
feature_reflect_object.go #115 check object end 2017-07-06 16:04:52 +08:00
feature_reflect_slice.go #70 decode null to nil for map/slice 2017-06-26 10:20:49 +08:00
feature_reflect.go #102 create correct type when pointer to Marshaler/Unmarshaler is nil 2017-07-02 11:35:30 +08:00
feature_stream_float.go fix write float compatibility 2017-07-02 15:11:36 +08:00
feature_stream_int.go #53 move current config EnableXXX 2017-06-13 17:47:40 +08:00
feature_stream_string.go #63 keep struct field order 2017-06-23 08:21:02 +08:00
feature_stream.go #75 support MarshalIndent 2017-06-29 20:48:27 +08:00
jsoniter_1dot8_only_test.go fix write float compatibility 2017-07-02 15:11:36 +08:00
jsoniter_adapter_test.go separate 1.8 tests 2017-07-02 14:27:16 +08:00
jsoniter_any_array_test.go gofmt 2017-06-19 23:43:53 +08:00
jsoniter_any_bool_test.go gofmt 2017-06-19 23:43:53 +08:00
jsoniter_any_float_test.go gofmt 2017-06-19 23:43:53 +08:00
jsoniter_any_int_test.go gofmt 2017-06-19 23:43:53 +08:00
jsoniter_any_map_test.go gofmt 2017-06-19 23:43:53 +08:00
jsoniter_any_null_test.go gofmt 2017-06-19 23:43:53 +08:00
jsoniter_any_object_test.go gofmt 2017-06-19 23:43:53 +08:00
jsoniter_any_string_test.go gofmt 2017-06-19 23:43:53 +08:00
jsoniter_array_test.go #63 add more tests for json.RawMessage 2017-06-19 21:24:59 +08:00
jsoniter_bool_test.go extract out any tests 2017-06-17 21:32:48 +08:00
jsoniter_customize_test.go #102 create correct type when pointer to Marshaler/Unmarshaler is nil 2017-07-02 11:35:30 +08:00
jsoniter_demo_test.go #59 add ConfigFastest 2017-06-17 10:21:37 +08:00
jsoniter_find_end_test.go #59 add ConfigFastest 2017-06-17 10:21:37 +08:00
jsoniter_fixed_array_test.go gofmt 2017-06-19 23:43:53 +08:00
jsoniter_float_test.go skip t.Run below 1.8 2017-07-02 15:20:18 +08:00
jsoniter_int_test.go skip t.Run below 1.8 2017-07-02 15:20:18 +08:00
jsoniter_interface_test.go #91 fix one ptr embedded struct 2017-07-01 00:09:40 +08:00
jsoniter_invalid_test.go #115 check object end 2017-07-06 16:04:52 +08:00
jsoniter_io_test.go #59 add ConfigFastest 2017-06-17 10:21:37 +08:00
jsoniter_iterator_test.go extract out any tests 2017-06-17 21:32:48 +08:00
jsoniter_large_file_test.go #59 add ConfigFastest 2017-06-17 10:21:37 +08:00
jsoniter_map_test.go fix anonymous fields 2017-06-21 00:26:18 +08:00
jsoniter_nested_test.go #68 number to string 2017-06-20 15:11:01 +08:00
jsoniter_null_test.go #70 decode null to nil for map/slice 2017-06-26 10:20:49 +08:00
jsoniter_object_test.go #87 fix embedded field sorting order 2017-06-30 14:01:50 +08:00
jsoniter_optional_test.go #53 move current config EnableXXX 2017-06-13 17:47:40 +08:00
jsoniter_raw_message_test.go gofmt 2017-06-19 23:43:53 +08:00
jsoniter_reflect_native_test.go #59 add ConfigFastest 2017-06-17 10:21:37 +08:00
jsoniter_skip_test.go gofmt 2017-06-19 23:43:53 +08:00
jsoniter_stream_test.go #59 add ConfigFastest 2017-06-17 10:21:37 +08:00
jsoniter_string_test.go skip t.Run below 1.8 2017-07-02 15:20:18 +08:00
LICENSE Initial commit 2016-11-30 08:30:24 +08:00
README.md cut 0.9.18 2017-07-03 10:17:02 +08:00
test.sh test and cover multiple packages 2017-07-02 12:58:14 +08:00

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

Usage

100% compatibility with standard lib

Replace

import "encoding/json"
json.Marshal(&data)

with

import "github.com/json-iterator/go"
jsoniter.Marshal(&data)

Replace

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

with

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