Skip to content

rudderlabs/sonnet

This branch is 2 commits ahead of sugawarayuuta/sonnet:main.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

c6531aa · Mar 18, 2025

History

15 Commits
Mar 18, 2025
Feb 11, 2023
Feb 11, 2023
Mar 18, 2025
Mar 18, 2025
Sep 21, 2023
Sep 21, 2023
Mar 18, 2025
Sep 21, 2023
Mar 18, 2025
Mar 18, 2025
Mar 18, 2025
Sep 21, 2023
Sep 21, 2023
Sep 21, 2023
Mar 18, 2025
Sep 21, 2023
Sep 24, 2023
Sep 21, 2023
Mar 18, 2025
Sep 21, 2023
Mar 18, 2025
Sep 21, 2023
Sep 21, 2023
Sep 24, 2023
Sep 21, 2023
Sep 21, 2023
Sep 21, 2023
Mar 18, 2025

Repository files navigation

Sonnet

High performance JSON library in Go.

gopher.png

Features

  • Fully compatible with the Go standard library, Both the encoder and the decoder passed all tests from it.

  • Efficient. Uses less memory and several times shorter decoding time when I benchmark this against the standard library.

  • "encoding/json" independent. Unlike some of other implementations, It doesn't call the standard library's JSON, at all. it's written from ground up.

The problems of others

Some are CPU dependent, some libraries' APIs are incompatible, most of them use unsafe, some requires static code generation, etc.

But that's not all. even with these downsides, they're still slow.

Installation

go get github.com/rudderlabs/sonnet

Usage

The usage is the same as the standard library.

Use pkg.go.dev website, or read the blog post

Performance differences after the removal of unsafe

After some effort, it's actually faster than the previous one. See the below benchmarks for more information.

Marshal Unmarshal
marshal.png unmarshal.png

Benchmarks

Although I recommend you to benchmark this yourself, here is benchmarks on my machine for reference. (currently, it's showing the old version. It'll be updated to the latest version of this, soon)

In short, At least in my environment, I couldn't find a faster library that is implemented "correctly". "correct", as in, proper UTF8 handling, validation of RawMessage, and others. Which some of the alternatives don't do.

Thank you

About

High performance JSON decoder in Go

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 100.0%