1
0
mirror of https://github.com/json-iterator/go.git synced 2025-01-23 18:54:21 +02:00
json-iterator/README.md

63 lines
1.5 KiB
Markdown
Raw Normal View History

[![rcard](https://goreportcard.com/badge/github.com/json-iterator/go)](https://goreportcard.com/report/github.com/json-iterator/go)
2016-12-11 23:55:55 +08:00
jsoniter (json-iterator) is fast and flexible JSON parser available in [Java](https://github.com/json-iterator/java) and [Go](https://github.com/json-iterator/go)
2016-12-01 00:56:25 +08:00
2017-06-06 16:54:26 +08: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 16:55:32 +08:00
| --- | --- | --- | --- |
2017-06-06 16:54:26 +08: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 11:20:24 +08:00
# Usage
2016-12-01 00:56:25 +08:00
2017-06-02 11:20:24 +08:00
100% compatibility with standard lib
2016-12-13 01:13:15 +08:00
2017-06-02 11:20:24 +08:00
Replace
2016-12-13 01:13:15 +08:00
2017-06-02 11:20:54 +08:00
```go
2017-06-02 11:20:24 +08:00
import "encoding/json"
json.Marshal(&data)
```
2016-12-12 08:08:37 +08:00
2017-06-02 11:20:24 +08:00
with
2016-12-12 08:08:37 +08:00
2017-06-02 11:20:54 +08:00
```go
2016-12-12 08:08:37 +08:00
import "github.com/json-iterator/go"
2017-06-02 11:20:24 +08:00
jsoniter.Marshal(&data)
2016-12-12 08:08:37 +08:00
```
2017-06-02 11:20:24 +08:00
Replace
2016-12-12 08:08:37 +08:00
2017-06-02 11:20:54 +08:00
```go
2017-06-02 11:20:24 +08:00
import "encoding/json"
json.Unmarshal(input, &data)
2016-12-12 08:08:37 +08:00
```
2017-06-02 11:20:24 +08:00
with
2016-12-15 23:49:56 +08:00
2017-06-02 11:20:54 +08:00
```go
2016-12-15 23:49:56 +08:00
import "github.com/json-iterator/go"
2017-06-02 11:20:24 +08:00
jsoniter.Unmarshal(input, &data)
2016-12-15 23:49:56 +08:00
```
2016-12-12 08:08:37 +08:00
# 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](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/json-iterator/Lobby)