-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Labels
Description
During processing some the file attempted to be read more than once. For example WavInput reads the file every time the sequence is created.
Two main consideration points:
- Some file systems may not support multiple reads (i.e. reading from HTTP/network source).
- It is might be inefficient.
No proposed solutions at the moment. The ideas:
- Either generically cache in local file systems, though may not work for some cases, when the user of the file system can be distributed physically across different machines with no access to shared FS.
- OR FS user itself should tackle the problem on its own depending on the use case, though FS should state the fact that multiple reads are not supported.
Reactions are currently unavailable