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
We give you the choice of using reqwest or surf as the HTTP client. I know that reqwest supports gzip encoding, and I'd assume surf also supports it. Either way, there's absolutely no need to implement gzip in this crate. The most we could do is pass through the gzip feature to the respective HTTP client, as at least reqwest requires a feature for gzip to be enabled.
Empty2k12
changed the title
Support gzip
Passthrough gzip param to http crate
Apr 4, 2024
I have adapted the issue title. Like @msrd0 said, it makes the most sense to include a toggle in the crate that enables gzip in the underlying http crate used.
According to Use gzip compression,
influxdb
supportsgzip
compression. I think thatinfluxdb-rust
should support this.I guess that we can use flate2-rs to implement this feature.
If you agree with this feature, I'd like to implement this.
The text was updated successfully, but these errors were encountered: