Comment on On-demand JSON: A better way to parse documents?parentComments−ysleepy2yYou need a parser for validation, - preferably a fast, possibly even a streaming one.−samatman2yWhich this is not.A validating parser, that is. The paper clearly indicates that invalid JSON like [1, 1b] will pass, unless your code happens to try and decode the 1b.
Comments
You need a parser for validation, - preferably a fast, possibly even a streaming one.
Which this is not.
A validating parser, that is. The paper clearly indicates that invalid JSON like [1, 1b] will pass, unless your code happens to try and decode the 1b.