jsoniter
colfer
Our great sponsors
jsoniter | colfer | |
---|---|---|
7 | 1 | |
10,848 | 658 | |
2.0% | - | |
1.9 | 0.6 | |
3 months ago | about 2 months ago | |
Go | Go | |
MIT License | GNU General Public License v3.0 or later |
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!
colfer
-
What type of software do you write at your workplace?
https://github.com/pascaldekloe/colfer high-perf binary sesialization format (for internal on-disk data storage).
What are some alternatives?
easyjson - Fast JSON serializer for golang.
gogoprotobuf - [Looking for new ownership] Protocol Buffers for Go with Gadgets
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
go-serializer - :loop: Serialize any custom type or convert any content to []byte or string, for Go Programming Language
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.
go-capnproto - Cap'n Proto library and parser for go. This is go-capnproto-1.0, and does not have rpc. See https://github.com/zombiezen/go-capnproto2 for 2.0 which has rpc and capabilities.