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 parser currently requires you to read the entire file into memory first, then splits the entire file body into an array of unicode characters.
This is okay for schema migrations (which is primarily what we needed this for) since file-sizes tend to be manageable, but is not a suitable approach for very large files.
Make it work with streams rather than strings and character arrays.
The text was updated successfully, but these errors were encountered:
The parser currently requires you to read the entire file into memory first, then splits the entire file body into an array of unicode characters.
This is okay for schema migrations (which is primarily what we needed this for) since file-sizes tend to be manageable, but is not a suitable approach for very large files.
Make it work with streams rather than strings and character arrays.
The text was updated successfully, but these errors were encountered: