Xuanwo opened a new issue, #2929:
URL: https://github.com/apache/incubator-opendal/issues/2929

   It's a common operation that users perform like the following:
   
   ```rust
   let r = op.reader("path/to/file").await?;
   r.seek(SeekFrom::Start(1024)).await?;
   r.read_to_end().await?;
   ```
   
   In our current implementations, we will need to perform `get_object` first 
which could add extra cost. It's better to make opendal reader become lazy 
until the `read` really called.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to