Replies: 2 comments 1 reply
-
Beta Was this translation helpful? Give feedback.
1 reply
-
|
There are libraries designed to handle multi-gigabyte JSON files efficiently. I'm currently experimenting with the Jackson Streaming API, newline-delimited JSON (NDJSON), and simdjson. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Problem: We have to deal with JSON files which are several GBs large, and we cannot afford to load the entire JSON into RAM every time we want to perform operations with it.
Action: See if you can find any libraries that do JSON streaming. You can also explore other streaming formats similar to JSON, such as XML.
Beta Was this translation helpful? Give feedback.
All reactions