Xuanwo
Xuanwo
> INFRA has added the token. Thanks!
To make excalidocker available on web, we might need to remove `isahc` and `openssl`. Do you think it's a good idea to introduce `reqwest` (and `tokio`), `rustls` in project instead?
Hi, I believe this hint should be optional and we shouldn't require all users to provide it.
> Or do you mean that i should add a function like `with_prefetch_hint` and have the hint be in the struct? Yep. I believe we should not change the `read`...
Hi, `compat` is used to facilitate compatibility between `futures 0.1` and `futures 0.3`. This is unnecessary since the entire community now relies on `futures 0.3` instead. Adding the `compat` feature...
> Hi @GG2002 I don't think there's anything wrong with this. Will it cause dependency incompatibility? Hi, this will add an extra `futures 0.1` dependency for all projects that use...
I used to think we should prohibit this case, but I've somewhat changed my mind. I now believe that we can simply permit such cases and only select the newest...
I prefer to refactor https://github.com/apache/opendal/issues/3639 first so we have a more solid base for adding more services. Current design requires us to list all keys at once.
> If you manually set `.header("accept-encoding", "identity")` on that specific request, does it all work? Hi, this isn't working as expected. In this case, GCS performs Decompressive Transcoding, which results...
> I read the doc you linked, it says to transcoding will happen if you send `accept-encoding: gzip`, which reqwest sends if the `gzip` feature is enabled. Hi, gcs's behavior...