simdjson / simdjson-java

A Java version of simdjson, a high-performance JSON parser utilizing SIMD instructions
Apache License 2.0
289 stars 22 forks source link

Stream reader? #19

Closed ryust closed 7 months ago

ryust commented 1 year ago

Is there no support for an I/O stream reader (vs byte array) parser like all the other JSON libraries have? Seems odd for a high speed parser to load large JSON structures into a byte[] with its subsequent memory consumption. I'd like to use this library in an Android app.

piotrrzysko commented 1 year ago

Currently, there is no such support. However, it's definitely worth considering to add this feature in the future.

piotrrzysko commented 7 months ago

I'm closing this one. Let's use #33 to track any progress in adding support for streaming parsing.