1
0
mirror of https://github.com/json-iterator/go.git synced 2024-11-27 08:30:57 +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-06-06 20:01:43 +08:00
assert fix 4 fields object decoding 2017-01-06 20:17:47 +08:00
require fix 4 fields object decoding 2017-01-06 20:17:47 +08:00
example_test.go update test 2017-06-05 22:10:01 +08:00
feature_adapter.go Update feature_adapter.go 2017-06-06 20:01:43 +08:00
feature_any_array.go object lazy any support get all 2017-01-31 20:26:35 +08:00
feature_any_bool.go add all integer types 2017-01-29 16:55:32 +08:00
feature_any_float.go add all integer types 2017-01-29 16:55:32 +08:00
feature_any_int32.go add all integer types 2017-01-29 16:55:32 +08:00
feature_any_int64.go add all integer types 2017-01-29 16:55:32 +08:00
feature_any_invalid.go add all integer types 2017-01-29 16:55:32 +08:00
feature_any_nil.go fix tests 2017-02-12 22:49:45 +08:00
feature_any_object.go fix random go test failure 2017-06-02 17:34:40 +08:00
feature_any_string.go add all integer types 2017-01-29 16:55:32 +08:00
feature_any_uint32.go add all integer types 2017-01-29 16:55:32 +08:00
feature_any_uint64.go add all integer types 2017-01-29 16:55:32 +08:00
feature_any.go fix wrap any 2017-05-19 19:44:27 +08:00
feature_iter_array.go ReadArrayCB 2017-01-20 13:54:51 +08:00
feature_iter_float.go #31 support json.RawMessage 2017-06-02 10:50:23 +08:00
feature_iter_int.go use hash for field dispatching 2017-02-08 13:46:28 +08:00
feature_iter_object.go #25 make fielding binding case insensitive 2017-05-24 13:16:09 +08:00
feature_iter_skip.go #27 support json.Unmarshaler 2017-05-24 16:04:11 +08:00
feature_iter_string.go simplify read string, and support null 2017-05-23 18:32:39 +08:00
feature_iter.go array lazy fill and full fill 2017-01-24 22:36:16 +08:00
feature_reflect_array.go fix one field struct interface{} optimization compatibility 2017-05-23 17:44:50 +08:00
feature_reflect_map.go support TextMarshaler as map key 2017-06-06 00:09:33 +08:00
feature_reflect_native.go support []byte; marshal without copy 2017-06-06 09:44:56 +08:00
feature_reflect_object.go #36 handle anonymous 2017-06-02 16:52:20 +08:00
feature_reflect.go support []byte; marshal without copy 2017-06-06 09:44:56 +08:00
feature_stream_float.go support []byte; marshal without copy 2017-06-06 09:44:56 +08:00
feature_stream_int.go support []byte; marshal without copy 2017-06-06 09:44:56 +08:00
feature_stream.go flush when buffer is large enough 2017-06-06 14:16:54 +08:00
jsoniter_adapter_test.go #34 implement NewEncoder 2017-06-02 18:46:44 +08:00
jsoniter_array_test.go support []byte; marshal without copy 2017-06-06 09:44:56 +08:00
jsoniter_base64_test.go Formated, doced. Also fixed few minor bugs. 2017-01-05 21:23:08 +08:00
jsoniter_bool_test.go bool any 2017-01-23 08:45:57 +08:00
jsoniter_customize_test.go support []byte; marshal without copy 2017-06-06 09:44:56 +08:00
jsoniter_demo_test.go add simple marshal benchmark 2017-06-05 22:04:52 +08:00
jsoniter_find_end_test.go fix tests 2017-02-12 22:49:45 +08:00
jsoniter_float_test.go support big float and int 2017-05-31 12:40:50 +08:00
jsoniter_int_test.go #30 support json.Number 2017-06-02 10:21:43 +08:00
jsoniter_interface_test.go fix random go test failure 2017-06-02 17:34:40 +08:00
jsoniter_io_test.go Formated, doced. Also fixed few minor bugs. 2017-01-05 21:23:08 +08:00
jsoniter_large_file_test.go Formated, doced. Also fixed few minor bugs. 2017-01-05 21:23:08 +08:00
jsoniter_map_test.go support TextMarshaler as map key 2017-06-06 00:09:33 +08:00
jsoniter_nested_test.go Formated, doced. Also fixed few minor bugs. 2017-01-05 21:23:08 +08:00
jsoniter_null_test.go #26 do not enforce pointer as optional 2017-05-23 18:46:11 +08:00
jsoniter_object_test.go fix random go test failure 2017-06-02 17:34:40 +08:00
jsoniter_optional_test.go fix random go test failure 2017-06-02 17:34:40 +08:00
jsoniter_reflect_native_test.go support int/string encode 2017-01-09 17:47:21 +08:00
jsoniter_reflect_struct_test.go fix random go test failure 2017-06-02 17:34:40 +08:00
jsoniter_reflect_test.go implement readFloat32 fast path 2017-01-15 17:30:02 +08:00
jsoniter_skip_test.go Formated, doced. Also fixed few minor bugs. 2017-01-05 21:23:08 +08:00
jsoniter_stream_test.go support []byte; marshal without copy 2017-06-06 09:44:56 +08:00
jsoniter_string_test.go wrap string 2017-01-26 16:41:49 +08:00
LICENSE Initial commit 2016-11-30 08:30:24 +08:00
README.md update benchmark 2017-06-06 16:55:32 +08:00

rcard

jsoniter (json-iterator) is fast and flexible JSON parser available in Java and Go

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)

How to get

go get github.com/json-iterator/go

Contribution Welcomed !

Report issue or pull request, or email taowen@gmail.com, or Gitter chat