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
The golang bindings imply that we can return a IO object backed by a byte array for LocalResult#buf, which means that we avoid loading the entire result into a single in-memory string. This also allows us to iterate over the results one row at a time, which can be much more efficient than needing to parse a single string as CSV or JSON in one go.
The text was updated successfully, but these errors were encountered:
The golang bindings imply that we can return a IO object backed by a byte array for
LocalResult#buf
, which means that we avoid loading the entire result into a single in-memory string. This also allows us to iterate over the results one row at a time, which can be much more efficient than needing to parse a single string as CSV or JSON in one go.The text was updated successfully, but these errors were encountered: