You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
he current builder returns a JSON by creating the entire structure. Useful for smaller documents not so much for large docs i.e 100+mb with 1 million+ nested json entries. A lazy builder would not resolve the entire strcuture but only the top level strcuture. Parsing will be done in a on demand fashion.
The api should look like this
valm=JSON.parsStream(streamsource)
valm1= m("key1")("key2")( f=> { // do something with this to be happening // return jsonValue})valm2= m("key3")(0)(f => { // do something here // return jsonValue})JSON.toStream(m) // non blockingvalobj:JsonObject=JSON.fromStreamJson(m2)
JSON.toFile(m,"filename") // blocking
The text was updated successfully, but these errors were encountered:
he current builder returns a JSON by creating the entire structure. Useful for smaller documents not so much for large docs i.e 100+mb with 1 million+ nested json entries. A lazy builder would not resolve the entire strcuture but only the top level strcuture. Parsing will be done in a on demand fashion.
The api should look like this
The text was updated successfully, but these errors were encountered: