Hmm. I wonder if jsonista can be used for streaming serialization. Meaning, I open a JSON array, then stream data as values until I'm done and then close the JSON array
And while doing that jsonista writes the data to given output
I need to process a large amount of data in a streaming manner and send that data as JSON to endpoint for storing
Quick look at the API would make me think this is not possible
I can do this manually by first inserting "["
then processing all the elements and finally insert "]"
but that makes me feel dirty 🙂
Did it the dirty way
No helper for that. Ideas & PR welcome for that