Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Optimize for large files #1

Open
mindplay-dk opened this issue May 19, 2017 · 0 comments
Open

Optimize for large files #1

mindplay-dk opened this issue May 19, 2017 · 0 comments
Milestone

Comments

@mindplay-dk
Copy link
Collaborator

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.

@mindplay-dk mindplay-dk added this to the 2.0 milestone May 19, 2017
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant