Utf8Json
Definitely Fastest and Zero Allocation JSON Serializer for C#(NET, .NET Core, Unity, Xamarin). (by neuecc)
Utf8JsonAsyncStreamReader
An Asynchronous forward-only streaming JSON parser and deserializer based on System.Text.Json.Utf8JsonReader. (by gragra33)
Utf8Json | Utf8JsonAsyncStreamReader | |
---|---|---|
5 | 1 | |
2,248 | 6 | |
- | - | |
0.0 | 4.4 | |
about 3 years ago | 8 months ago | |
C# | C# | |
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.
Utf8Json
Posts with mentions or reviews of Utf8Json.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2024-05-29.
-
Runtime code generation and execution in Go
This looks like a fun project but for serious work, if you need runtime codegen, you should use .NET which has been successfully using reflection and IL emit for more than a decade:
- Regex https://github.com/dotnet/runtime/blob/main/src/libraries/Sy...
- Json https://github.com/neuecc/Utf8Json/tree/master?tab=readme-ov... (this project is archived but nonetheless impressive and continues to show good numbers despite obsoletion)
- LINQ to DB query compilation https://github.com/dotnet/efcore/blob/main/src/EFCore/Query/...
-
Utf8Json VS Utf8JsonAsyncStreamReader - a user suggested alternative
2 projects | 10 May 2023
-
Branchless Exercise
While I posted a solution that would do this, I'd call this premature optimization. The only time I'd even consider doing this is in a hot path. Here's a good reason to focus on branchless programming: https://github.com/neuecc/Utf8Json.
-
Tried system.text.json instead of Newtonsoft.json for a personal project, resulted in a 10x throughput in improvement
Now try Utf8Json.
-
Runtime communication with C# applicaiton
If my game state was smaller I would go for https://github.com/neuecc/Utf8Json and serde_json combination. Would save me some time with rmp_serde customization.
Utf8JsonAsyncStreamReader
Posts with mentions or reviews of Utf8JsonAsyncStreamReader.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-05-10.
-
Utf8Json VS Utf8JsonAsyncStreamReader - a user suggested alternative
2 projects | 10 May 2023
An Asynchronous forward-only streaming JSON parser and deserializer based on System.Text.Json.Utf8JsonReader. Buffer reads a stream and enables conditional branch deserialization. Memory usage is minimal, based on either the buffer size used or the JSON property branch being deserialized. Works with JSON streams of any size.
What are some alternatives?
When comparing Utf8Json and Utf8JsonAsyncStreamReader you can also consider the following projects:
Json.NET - Json.NET is a popular high-performance JSON framework for .NET
FluentSerializer - A fluent take on serializer libraries
LitJSON - JSON library for the .Net framework
hjson-cs - Hjson for C#
Protobuf.NET - Protocol Buffers library for idiomatic .NET
Migrant - Fast and flexible serialization framework usable on undecorated classes.