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
{{ message }}
This repository was archived by the owner on Jun 2, 2024. It is now read-only.
When reading a file, we need to have a way to handle file headers which contain text too long to fit in a stack array.
Ignore them.
Though it'd solve the problem, we definitely don't want to silently discard files.
Allocate a buffer to temporarily store the data
The user will often want to simply ignore text of this length, and copying the data anyway will be expensive.
We'd probably need to give the user a way to reuse whichever allocation method we use.
Use a "streaming" API to construct metadata.
I haven't found a good design for this yet. It's tricky to make the design intuitive without introducing regressions.
(...and comments)
When reading a file, we need to have a way to handle file headers which contain text too long to fit in a stack array.
I haven't found a good design for this yet. It's tricky to make the design intuitive without introducing regressions.