jsoniter
go-serializer
Our great sponsors
jsoniter | go-serializer | |
---|---|---|
7 | 0 | |
10,848 | 14 | |
2.0% | - | |
1.9 | 0.0 | |
3 months ago | over 5 years ago | |
Go | Go | |
MIT License | MIT License |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
jsoniter
- jsoniter+1.18: panic in reflect2
-
What type of software do you write at your workplace?
https://github.com/json-iterator/go an alternative JSON encoding package which allows to stream (flush out) encoded data as soon as it's able to (which is in contrast with the stock package which buffers everything until the encoding is known to be complete and OK).
-
Some Go(lang) tips
What to use Easyjson is about the top of the pack and it's straightforward. The downside of efficient tools is that they use code generation to create the code required to turn your structs into json to minimise allocations. This is a manual build step which is annoying. Interestingly json-iterator also uses reflection but it's significantly faster. I suspect black magic.
-
What are your favorite packages to use?
jsoniter for low level access to JSON encode and decode
-
What is the best solution to unique data in golang
I think you have to parse the json, if you dont know exactly what you are looking for and want some validation und prevent manual parsing errors. For parsing big json files it is recommend to read and decode it as stream. Here is an example. If you have serious performance criteria take a look at jsoniter. It can be used as 1 to 1 replacement for standard library.
Takes like 10 minutes to write and parses very efficiently. https://github.com/json-iterator/go looks like it can provide such simple parsing
-
OjG now has a tokenizer that is almost 10 times faster than json.Decode
Need to compare with https://github.com/json-iterator/go too!
go-serializer
We haven't tracked posts mentioning go-serializer yet.
Tracking mentions began in Dec 2020.
What are some alternatives?
easyjson - Fast JSON serializer for golang.
mapstructure - Go library for decoding generic map values into native Go structures and vice versa.
compare-go-json - A comparison of several go JSON packages.
go-json - Fast JSON encoder/decoder compatible with encoding/json for Go
goprotobuf - Go support for Google's protocol buffers
GJSON - Get JSON values quickly - JSON parser for Go
go-codec - idiomatic codec and rpc lib for msgpack, cbor, json, etc. msgpack.org[Go]
Gin - Gin is a HTTP web framework written in Go (Golang). It features a Martini-like API with much better performance -- up to 40 times faster. If you need smashing performance, get yourself some Gin.
colfer - binary serialization format
csvutil - csvutil provides fast and idiomatic mapping between CSV and Go (golang) values.
cbor - CBOR codec (RFC 8949) with CBOR tags, Go struct tags (toarray, keyasint, omitempty), float64/32/16, big.Int, and fuzz tested billions of execs.
spew - Implements a deep pretty printer for Go data structures to aid in debugging