XmchxUp commented on issue #5426:
URL: https://github.com/apache/opendal/issues/5426#issuecomment-2563277203
@Xuanwo hi, what do you mean by real reading IO? Because my understanding is
that the current service backend already has this parameter, and the ETag for
multiple range requests is the same value.
```
pub fn http_get_request(
&self,
path: &str,
range: BytesRange,
args: &OpRead,
) -> Result<Request<Buffer>> {
let p = build_rooted_abs_path(&self.root, path);
let url = format!("{}{}", self.endpoint, percent_encode_path(&p));
let mut req = Request::get(&url);
if let Some(if_match) = args.if_match() {
req = req.header(IF_MATCH, if_match);
}
```
--
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]