Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
pshirshov authored Nov 6, 2023
1 parent 8d1bf68 commit 4847c86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ The tradeoff for these benefits is somehow more complicated and less efficient e

The non-streaming nature of almost all the JSON parsers requires a lot of work to be done every time you need to deserialize a huge chunk of `JSON` data: you need to read it from disk, parse it in memory into an AST representation, and, usually, map raw `JSON` tree to object instances. Even if you use token streams and know the type of your object ahead of time you still have to deal with the Type-2 grammar.

This may be very inefficient and cause unnecessary delays and pauses.
This may be very inefficient and causes unnecessary delays, pauses, CPU activity and memory consumption spikes.

## The idea

Expand Down

0 comments on commit 4847c86

Please sign in to comment.