We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Once the API will be rewritten using Axum (#95), we will have the opportunity to leverage tower-http's CompressionLayer.
tower-http
CompressionLayer
It supports br, deflate, gzip and zstd, but I don't know much about that. @valeriansaliou Which one would work best for the Dashboard?
br
deflate
gzip
zstd
As a side note, we'll have to disable compression for SSE routes, as mentioned in tokio-rs/axum#2034. Thankfully, the solution is very easy.
Also, see tokio-rs/axum#2728.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Once the API will be rewritten using Axum (#95), we will have the opportunity to leverage
tower-http
'sCompressionLayer
.It supports
br
,deflate
,gzip
andzstd
, but I don't know much about that. @valeriansaliou Which one would work best for the Dashboard?Compression and SSEs
As a side note, we'll have to disable compression for SSE routes, as mentioned in tokio-rs/axum#2034. Thankfully, the solution is very easy.
Also, see tokio-rs/axum#2728.
The text was updated successfully, but these errors were encountered: