Is it possible to stream data through the json parser without storing everything in memory?
Lets say I have a json file that is 10 GB, is it possible to stream that through the parser without storing it in memory?
Something like:
file stream >> json deserialze >> data stream
and the reverse:
data stream >> json serialize >> json string stream
Is that possible with this library?
Is it possible to stream data through the json parser without storing everything in memory?
Lets say I have a json file that is 10 GB, is it possible to stream that through the parser without storing it in memory?
Something like:
file stream >> json deserialze >> data stream
and the reverse:
data stream >> json serialize >> json string stream
Is that possible with this library?