• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..15-Jan-2019-

.codecov.ymlH A D15-Jan-201933 42

.gitignoreH A D15-Jan-201942 54

.travis.ymlH A D15-Jan-2019159 1510

Gopkg.lockH A D15-Jan-2019736 2822

Gopkg.tomlH A D15-Jan-2019712 2724

LICENSEH A D15-Jan-20191 KiB2217

README.mdH A D15-Jan-20192.9 KiB9263

adapter.goH A D15-Jan-20194.3 KiB14992

any.goH A D15-Jan-20197 KiB322278

any_array.goH A D15-Jan-20194.7 KiB279239

any_bool.goH A D15-Jan-20191.8 KiB138103

any_float.goH A D15-Jan-20191.2 KiB8465

any_int32.goH A D15-Jan-20191.1 KiB7556

any_int64.goH A D15-Jan-20191.1 KiB7556

any_invalid.goH A D15-Jan-20191.3 KiB8362

any_nil.goH A D15-Jan-2019916 7052

any_number.goH A D15-Jan-20192.6 KiB124106

any_object.goH A D15-Jan-20196.8 KiB375311

any_str.goH A D15-Jan-20192.8 KiB167133

any_uint32.goH A D15-Jan-20191.1 KiB7556

any_uint64.goH A D15-Jan-20191.1 KiB7556

build.shH A D15-Jan-2019381 1310

config.goH A D15-Jan-201910.1 KiB373318

fuzzy_mode_convert_table.mdH A D15-Jan-2019927 77

iter.goH A D15-Jan-20197.1 KiB323277

iter_array.goH A D15-Jan-20191.2 KiB5954

iter_float.goH A D15-Jan-20197.5 KiB348318

iter_int.goH A D15-Jan-20198.5 KiB346314

iter_object.goH A D15-Jan-20195.8 KiB253240

iter_skip.goH A D15-Jan-20193.2 KiB130113

iter_skip_sloppy.goH A D15-Jan-20192.9 KiB145119

iter_skip_strict.goH A D15-Jan-20191.8 KiB9080

iter_str.goH A D15-Jan-20194.7 KiB216197

jsoniter.goH A D15-Jan-2019884 191

pool.goH A D15-Jan-2019956 4333

reflect.goH A D15-Jan-20198.3 KiB331284

reflect_array.goH A D15-Jan-20192.6 KiB10592

reflect_dynamic.goH A D15-Jan-20191.4 KiB7162

reflect_extension.goH A D15-Jan-201913.7 KiB472372

reflect_json_number.goH A D15-Jan-20192.6 KiB11392

reflect_json_raw_message.goH A D15-Jan-20191.6 KiB6148

reflect_map.goH A D15-Jan-20198.4 KiB319294

reflect_marshaler.goH A D15-Jan-20195.7 KiB219197

reflect_native.goH A D15-Jan-201910.8 KiB452394

reflect_optional.goH A D15-Jan-20193.4 KiB134109

reflect_slice.goH A D15-Jan-20192.6 KiB10090

reflect_struct_decoder.goH A D15-Jan-201928.1 KiB1,0491,010

reflect_struct_encoder.goH A D15-Jan-20195.1 KiB211188

stream.goH A D15-Jan-20195.2 KiB212150

stream_float.goH A D15-Jan-20192.2 KiB9581

stream_int.goH A D15-Jan-20194.5 KiB191166

stream_str.goH A D15-Jan-20197.8 KiB373328

test.shH A D15-Jan-2019285 139

README.md

1[![Sourcegraph](https://sourcegraph.com/github.com/json-iterator/go/-/badge.svg)](https://sourcegraph.com/github.com/json-iterator/go?badge)
2[![GoDoc](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](http://godoc.org/github.com/json-iterator/go)
3[![Build Status](https://travis-ci.org/json-iterator/go.svg?branch=master)](https://travis-ci.org/json-iterator/go)
4[![codecov](https://codecov.io/gh/json-iterator/go/branch/master/graph/badge.svg)](https://codecov.io/gh/json-iterator/go)
5[![rcard](https://goreportcard.com/badge/github.com/json-iterator/go)](https://goreportcard.com/report/github.com/json-iterator/go)
6[![License](http://img.shields.io/badge/license-mit-blue.svg?style=flat-square)](https://raw.githubusercontent.com/json-iterator/go/master/LICENSE)
7[![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/json-iterator/Lobby)
8
9A high-performance 100% compatible drop-in replacement of "encoding/json"
10
11You can also use thrift like JSON using [thrift-iterator](https://github.com/thrift-iterator/go)
12
13```
14Go开发者们请加入我们,滴滴出行平台技术部 taowen@didichuxing.com
15```
16
17# Benchmark
18
19![benchmark](http://jsoniter.com/benchmarks/go-benchmark.png)
20
21Source code: https://github.com/json-iterator/go-benchmark/blob/master/src/github.com/json-iterator/go-benchmark/benchmark_medium_payload_test.go
22
23Raw Result (easyjson requires static code generation)
24
25| | ns/op | allocation bytes | allocation times |
26| --- | --- | --- | --- |
27| std decode | 35510 ns/op | 1960 B/op | 99 allocs/op |
28| easyjson decode | 8499 ns/op | 160 B/op | 4 allocs/op |
29| jsoniter decode | 5623 ns/op | 160 B/op | 3 allocs/op |
30| std encode | 2213 ns/op | 712 B/op | 5 allocs/op |
31| easyjson encode | 883 ns/op | 576 B/op | 3 allocs/op |
32| jsoniter encode | 837 ns/op | 384 B/op | 4 allocs/op |
33
34Always benchmark with your own workload.
35The result depends heavily on the data input.
36
37# Usage
38
39100% compatibility with standard lib
40
41Replace
42
43```go
44import "encoding/json"
45json.Marshal(&data)
46```
47
48with
49
50```go
51import "github.com/json-iterator/go"
52
53var json = jsoniter.ConfigCompatibleWithStandardLibrary
54json.Marshal(&data)
55```
56
57Replace
58
59```go
60import "encoding/json"
61json.Unmarshal(input, &data)
62```
63
64with
65
66```go
67import "github.com/json-iterator/go"
68
69var json = jsoniter.ConfigCompatibleWithStandardLibrary
70json.Unmarshal(input, &data)
71```
72
73[More documentation](http://jsoniter.com/migrate-from-go-std.html)
74
75# How to get
76
77```
78go get github.com/json-iterator/go
79```
80
81# Contribution Welcomed !
82
83Contributors
84
85* [thockin](https://github.com/thockin)
86* [mattn](https://github.com/mattn)
87* [cch123](https://github.com/cch123)
88* [Oleg Shaldybin](https://github.com/olegshaldybin)
89* [Jason Toffaletti](https://github.com/toffaletti)
90
91Report issue or pull request, or email taowen@gmail.com, or [![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/json-iterator/Lobby)
92