easyjson VS go-warning-codegeneration

Compare easyjson vs go-warning-codegeneration and see what are their differences.

Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
easyjson go-warning-codegeneration
10 1
4,311 -
1.0% -
3.6 -
2 months ago -
Go
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.

easyjson

Posts with mentions or reviews of easyjson. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-10.
  • Google's Go may add telemetry reporting that's on by default
    9 projects | /r/golang | 10 Feb 2023
    Compile time means you catch issues at... well compile time. It also means that the code is optimized. You can look at the performance different between encoding/json and easyjson for why you may desire that.
  • JSON encoder/decoder supporting omitempty on structs
    2 projects | /r/golang | 9 Feb 2023
  • TinyGo Reflection?
    4 projects | /r/golang | 6 Dec 2022
  • Wasm difficulties in Rust, Haskell, and Go
    9 projects | dev.to | 30 Nov 2022
    easyjson produced an empty file
  • Using a json lib other than encoding/json
    2 projects | /r/golang | 23 Mar 2022
    There is https://github.com/mailru/easyjson out there if you are absolutely sure that serialization is the bottleneck. Otherwise I'd go for stdlib.
  • What type of software do you write at your workplace?
    33 projects | /r/golang | 17 Jan 2022
    https://github.com/mailru/easyjson fast JSON (de)serializer which go generates code instead of using reflect at runtime.
  • Whats the fastest JSON unmarshaling package as of right now?
    4 projects | /r/golang | 2 Nov 2021
    If you know the schema of the JSON ahead of time and you need to parse the whole object, I would recommend https://github.com/mailru/easyjson as that will likely give you the fastest result. This works in almost all use cases, and easy to use features such as string interning can save you a lot of time on memory allocation if you parse a lot of JSON objects with identical values.
  • Some Go(lang) tips
    4 projects | dev.to | 2 Oct 2021
    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.
  • Обережно кодогенерація
    3 projects | dev.to | 21 Sep 2020
    Бібліотека easyjson теж для серіалізації працює через додатковий код замість використання рефлексії. Але після внесення в easyjson одної з оптимізацій, час від часу почали отримувати зламаний JSON, ось приклад тесту який покаже помилку.

go-warning-codegeneration

Posts with mentions or reviews of go-warning-codegeneration. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2020-09-21.
  • Обережно кодогенерація
    3 projects | dev.to | 21 Sep 2020
    Звісно хочеться використовувати оптимізовані бібліотеки, але стандартні краще протестовані та мають менше помилок. Приклади доступні в репозиторії.

What are some alternatives?

When comparing easyjson and go-warning-codegeneration you can also consider the following projects:

fastjson - Fast JSON parser and validator for Go. No custom structs, no code generation, no reflection

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

go-json - Fast JSON encoder/decoder compatible with encoding/json for Go

gogoprotobuf - [Deprecated] Protocol Buffers for Go with Gadgets

simdjson-go - Golang port of simdjson: parsing gigabytes of JSON per second

TinyGo - Go compiler for small places. Microcontrollers, WebAssembly (WASM/WASI), and command-line tools. Based on LLVM.

jsonparser - One of the fastest alternative JSON parser for Go that does not require schema

zerolog - Zero Allocation JSON Logger

compress - Optimized Go Compression Packages

pq - Pure Go Postgres driver for database/sql

mapstructure - Go library for decoding generic map values into native Go structures and vice versa.

gqlgen - go generate based graphql server library