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
Your implementation of the mysql2json protocol saves all the results to memory, so the number of results it can handle depends on the amount of free memory. The original implementation prints every line as it's own JSON object. In other words, it creates new-line-delimited JSON.
instead of doing this:
[{"row": 1},{"row": 2},{"row": 3}]
it simply does this
{"row": 1}{"row": 2}{"row": 3}
The text was updated successfully, but these errors were encountered:
Your implementation of the mysql2json protocol saves all the results to memory, so the number of results it can handle depends on the amount of free memory. The original implementation prints every line as it's own JSON object. In other words, it creates new-line-delimited JSON.
instead of doing this:
it simply does this
The text was updated successfully, but these errors were encountered: