jsoniter
A high-performance 100% compatible drop-in replacement of "encoding/json" (by json-iterator)
mapstructure
Go library for decoding generic map values into native Go structures and vice versa. (by mitchellh)
jsoniter | mapstructure | |
---|---|---|
13 | 17 | |
13,700 | 7,867 | |
0.9% | - | |
0.0 | 0.0 | |
11 months ago | 10 months ago | |
Go | Go | |
MIT License | MIT License |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
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.
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
Posts with mentions or reviews of jsoniter.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-07-30.
- Go Performance: Pequenas mudanças que ajudam a melhorar o desempenho do seu app
-
Handling high-traffic HTTP requests with JSON payloads
Since most of the time would be spent decoding json, you could try to cut this time using https://github.com/bytedance/sonic or https://github.com/json-iterator/go, both are drop-in replacements for the stdlib, sonic is faster.
-
A Journey building a fast JSON parser and full JSONPath
We all know the builtin golang JSON parser is slow.
How about doing comparisons against other implementations?
Like this one: https://github.com/json-iterator/go
-
Polygon: Json Database System designed to run on small servers (as low as 16MB) and still be fast and flexible.
Json-iterator (https://github.com/json-iterator/go), you can replace all of encoding/json with this. It does the same thing but it's faster.
-
How can we umarshal a Big JSON effectively?
Do you want to look at every field all at the same time? If not, you can pick out individual fields. There's other packages such as https://github.com/tidwall/gjson or https://github.com/json-iterator/go that let you pass in paths such as "a.b.c" to extract single fields.
-
Designing a config API for microservices applications built using Go
For each Go type used within the config, we generate a separate unmarshaller function. The unmarshallers use json-iterator to process the output from CUE, while tracking the path within the config to the unmarshalled value. This path tracking will allow the function to check if live overrides have been provided on that path and return the override instead.
- 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
mapstructure
Posts with mentions or reviews of mapstructure.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-08-12.
-
Go is my hammer, and everything is a nail
Well, one used to have https://github.com/mitchellh/mapstructure which assisted here, but the lib then got abandoned.
- How do I marshal a JSON array into a map?
-
Is there any equivalent to pydantic, serde, etc?
Maybe https://github.com/mitchellh/mapstructure can do what you want? It has some options for Remainder Values and Omit Empty
-
Struggling to get JSON response data into usable struct
I've tried using mapstructure to then marshal the map fields into a struct which mostly works (it struggles with times and custom time types which requires a workaround for each case), but this doesn't feel very idiomatic and requires two passes at marshaling.
-
Return unstructed db rows to struct
Although some orders may have more records maybe a superset can be indentified that you can actually create a struct of it and after gathereing first all values into a map then convert it to a struct maybe using a library like https://github.com/mitchellh/mapstructure . this way you can at least isolate the non structured data only on the data extraction part and the rest of your application can work with well formed structs.
-
Trying to print JSON data from a file
Alternatively, you could try https://github.com/mitchellh/mapstructure if you don't know what your incoming structure is
-
How to ensure required fields in struct consistently?
I'm doing it by validating a map[string]any first then putting it into a structure using mapstructure. It covers most use-cases and offers the most flexibility, at the expense of a bit of performance.
-
Question about Unmarshalling
That said, it is possible to do this with JSON using something like https://github.com/tidwall/gjson or if you are fine with the switch statement but don't want to marshal and unmarshal again: https://github.com/mitchellh/mapstructure
-
What type of software do you write at your workplace?
https://github.com/mitchellh/mapstructure because we have JSON documents which contain rugged arrays ;-)
-
Help with mapstructure.Decode()
I've been using mapstructure.Decode to great effect, but currently can't figure out why a given mapping doesn't work. I'd appreciate it if someone could point out wtf I'm doing wrong or at least in the right direction:
What are some alternatives?
When comparing jsoniter and mapstructure you can also consider the following projects:
goprotobuf - Go support for Google's protocol buffers
structomap - Easily and dynamically generate maps from Go static structures
go-json - Fast JSON encoder/decoder compatible with encoding/json for Go
colfer - binary serialization format
gogoprotobuf - [Deprecated] Protocol Buffers for Go with Gadgets