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
Move away from the streaming approach and use straight file access; a stream is very inefficient in some cases (cannot jump (seek) to the end of the file, without reading everything in between).
Pros:
Better performance.
Opens the door for writing meta-data in addition to read meta-data.
Cons:
Would make this module less suitable for running in a browser.
The text was updated successfully, but these errors were encountered:
Move away from the streaming approach and use straight file access; a stream is very inefficient in some cases (cannot jump (seek) to the end of the file, without reading everything in between).
Pros:
Cons:
The text was updated successfully, but these errors were encountered: