tree: bb5cca066840292637d6ec8a0cc1afc601f1c58f [path history] [tgz]
  1. .codecov.yml
  2. .gitignore
  3. .travis.yml
  4. Gopkg.lock
  5. Gopkg.toml
  6. LICENSE
  7. README.md
  8. adapter.go
  9. any.go
  10. any_array.go
  11. any_bool.go
  12. any_float.go
  13. any_int32.go
  14. any_int64.go
  15. any_invalid.go
  16. any_nil.go
  17. any_number.go
  18. any_object.go
  19. any_str.go
  20. any_uint32.go
  21. any_uint64.go
  22. build.sh
  23. config.go
  24. fuzzy_mode_convert_table.md
  25. go.mod
  26. go.sum
  27. iter.go
  28. iter_array.go
  29. iter_float.go
  30. iter_int.go
  31. iter_object.go
  32. iter_skip.go
  33. iter_skip_sloppy.go
  34. iter_skip_strict.go
  35. iter_str.go
  36. jsoniter.go
  37. pool.go
  38. reflect.go
  39. reflect_array.go
  40. reflect_dynamic.go
  41. reflect_extension.go
  42. reflect_json_number.go
  43. reflect_json_raw_message.go
  44. reflect_map.go
  45. reflect_marshaler.go
  46. reflect_native.go
  47. reflect_optional.go
  48. reflect_slice.go
  49. reflect_struct_decoder.go
  50. reflect_struct_encoder.go
  51. stream.go
  52. stream_float.go
  53. stream_int.go
  54. stream_str.go
  55. test.sh
vendor/github.com/json-iterator/go/README.md

Sourcegraph GoDoc Build Status codecov rcard License Gitter chat

A high-performance 100% compatible drop-in replacement of "encoding/json"

You can also use thrift like JSON using thrift-iterator

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/opallocation bytesallocation times
std decode35510 ns/op1960 B/op99 allocs/op
easyjson decode8499 ns/op160 B/op4 allocs/op
jsoniter decode5623 ns/op160 B/op3 allocs/op
std encode2213 ns/op712 B/op5 allocs/op
easyjson encode883 ns/op576 B/op3 allocs/op
jsoniter encode837 ns/op384 B/op4 allocs/op

Always benchmark with your own workload. The result depends heavily on the data input.

Usage

100% compatibility with standard lib

Replace

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

with

import jsoniter "github.com/json-iterator/go"

var json = jsoniter.ConfigCompatibleWithStandardLibrary
json.Marshal(&data)

Replace

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

with

import jsoniter "github.com/json-iterator/go"

var json = jsoniter.ConfigCompatibleWithStandardLibrary
json.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