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
Currently, the niffler only supports Write and Read defined in std. However, AsyncRead or AsyncWrite like those in tokio are also demanded for operating large files or processing files with high disk latency.
The text was updated successfully, but these errors were encountered:
At the moment AsyncRead or AsyncWrite trait is define by async backend like futures or tokio.
Manage each async backend, could require many code.
We also need compression backend support AsyncRead and AsyncWrite, for example it's not the case for flate2, but async-compression could be nice.
I agree with you, it could be nice to have this Async interface but it's maybe need many change in niffler. So it could take time.
Currently, the niffler only supports
Write
andRead
defined in std. However,AsyncRead
orAsyncWrite
like those in tokio are also demanded for operating large files or processing files with high disk latency.The text was updated successfully, but these errors were encountered: