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
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.
The text was updated successfully, but these errors were encountered:
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:
No proposed solutions at the moment. The ideas:
The text was updated successfully, but these errors were encountered: