We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce8786c commit a15b77fCopy full SHA for a15b77f
site/src/server.rs
@@ -866,7 +866,7 @@ impl Server {
866
.header_typed(CacheControl::new().with_no_cache().with_no_store());
867
let body = rmp_serde::to_vec_named(&result).unwrap();
868
if accepts_gzip {
869
- let mut encoder = GzEncoder::new(Vec::new(), Compression::best());
+ let mut encoder = GzEncoder::new(Vec::new(), Compression::fast());
870
encoder.write_all(&*body).unwrap();
871
let body = encoder.finish().unwrap();
872
response
0 commit comments