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 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.