1
0
mirror of https://github.com/json-iterator/go.git synced 2024-11-27 08:30:57 +02:00
json-iterator/README.md

87 lines
2.7 KiB
Markdown
Raw Normal View History

2017-07-02 07:10:00 +02:00
[![Sourcegraph](https://sourcegraph.com/github.com/json-iterator/go/-/badge.svg)](https://sourcegraph.com/github.com/json-iterator/go?badge)
[![GoDoc](http://img.shields.io/badge/go-documentation-blue.svg?style=flat-square)](http://godoc.org/github.com/json-iterator/go)
[![Build Status](https://travis-ci.org/json-iterator/go.svg?branch=master)](https://travis-ci.org/json-iterator/go)
[![codecov](https://codecov.io/gh/json-iterator/go/branch/master/graph/badge.svg)](https://codecov.io/gh/json-iterator/go)
[![rcard](https://goreportcard.com/badge/github.com/json-iterator/go)](https://goreportcard.com/report/github.com/json-iterator/go)
2017-07-02 07:10:00 +02:00
[![License](http://img.shields.io/badge/license-mit-blue.svg?style=flat-square)](https://raw.githubusercontent.com/json-iterator/go/master/LICENSE)
2017-07-03 04:17:02 +02:00
[![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/json-iterator/Lobby)
2017-06-26 08:28:03 +02:00
A high-performance 100% compatible drop-in replacement of "encoding/json"
2016-11-30 18:56:25 +02:00
2017-07-31 15:49:02 +02:00
```
Go开发者们请加入我们,滴滴出行平台技术部 taowen@didichuxing.com
```
2017-06-06 10:54:26 +02:00
# Benchmark
![benchmark](http://jsoniter.com/benchmarks/go-benchmark.png)
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 |
2017-06-06 10:55:32 +02:00
| --- | --- | --- | --- |
2017-06-06 10:54:26 +02:00
| 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 |
2017-06-02 05:20:24 +02:00
# Usage
2016-11-30 18:56:25 +02:00
2017-06-02 05:20:24 +02:00
100% compatibility with standard lib
2016-12-12 19:13:15 +02:00
2017-06-02 05:20:24 +02:00
Replace
2016-12-12 19:13:15 +02:00
2017-06-02 05:20:54 +02:00
```go
2017-06-02 05:20:24 +02:00
import "encoding/json"
json.Marshal(&data)
```
2016-12-12 02:08:37 +02:00
2017-06-02 05:20:24 +02:00
with
2016-12-12 02:08:37 +02:00
2017-06-02 05:20:54 +02:00
```go
2016-12-12 02:08:37 +02:00
import "github.com/json-iterator/go"
2017-09-26 09:35:55 +02:00
var json = jsoniter.ConfigCompatibleWithStandardLibrary
json.Marshal(&data)
2016-12-12 02:08:37 +02:00
```
2017-06-02 05:20:24 +02:00
Replace
2016-12-12 02:08:37 +02:00
2017-06-02 05:20:54 +02:00
```go
2017-06-02 05:20:24 +02:00
import "encoding/json"
json.Unmarshal(input, &data)
2016-12-12 02:08:37 +02:00
```
2017-06-02 05:20:24 +02:00
with
2016-12-15 17:49:56 +02:00
2017-06-02 05:20:54 +02:00
```go
2016-12-15 17:49:56 +02:00
import "github.com/json-iterator/go"
2017-09-26 09:35:55 +02:00
var json = jsoniter.ConfigCompatibleWithStandardLibrary
json.Unmarshal(input, &data)
2016-12-15 17:49:56 +02:00
```
2017-06-18 17:42:23 +02:00
[More documentation](http://jsoniter.com/migrate-from-go-std.html)
2016-12-12 02:08:37 +02:00
# How to get
```
go get github.com/json-iterator/go
```
# Contribution Welcomed !
2017-07-02 05:59:11 +02:00
Contributors
* [thockin](https://github.com/thockin)
* [mattn](https://github.com/mattn)
2017-07-02 05:59:11 +02:00
* [cch123](https://github.com/cch123)
2017-09-17 10:07:42 +02:00
* [Oleg Shaldybin](https://github.com/olegshaldybin)
* [Jason Toffaletti](https://github.com/toffaletti)
2017-07-02 05:59:11 +02:00
Report 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)