Compression
Ktor provides the capability to compress outgoing content by using the Compression feature. You can use different compression algorithms, including gzip
and deflate
, specify the required conditions for compressing data (such as a content type or response size), or even compress data based on specific request parameters.
Install Compression
To install the Compression
feature, pass it to the install
function in the application initialization code. This can be the main
function …
import io.ktor.features.*
// ...
fun Application.main() {
install(Compression)
// ...
}
… or a specified module:
import io.ktor.features.*
// ...
fun Application.module() {
install(Compression)
// ...
}
This enables the gzip
, deflate
, and identity
encoders on a server. In the next chapter, we’ll see how to enable only specific encoders and configure conditions for compressing data.
Configure Compression Settings
You can configure compression in multiple ways: enable only specific encoders, specify their priorities, compress only specific content types, and so on.
Add Specific Encoders
To enable only specific encoders, call the corresponding extension functions, for example:
install(Compression) {
gzip()
deflate()
}
You can specify the priority for each compression algorithm by establishing the priority
property:
install(Compression) {
gzip {
priority = 0.9
}
deflate {
priority = 1.0
}
}
In the example above, deflate
has a higher priority value and takes precedence over gzip
. Note that the server first looks at the quality values within the Accept-Encoding header and then takes into account the specified priorities.
Configure Content Type
By default, Ktor doesn’t compress specific content types, such as audio
, video
, image
, and text/event-stream
. You can choose the content types to compress by calling matchContentType or exclude the desired media types from compression by using excludeContentType. The code snippet below shows how to compress all text subtypes and JavaScript code using gzip
:
install(Compression) {
gzip {
matchContentType(
ContentType.Text.Any,
ContentType.Application.JavaScript
)
}
}
Configure Response Size
The Compression
feature allows you to disable compression for responses whose size doesn’t exceed the specified value. To do this, pass the desired value (in bytes) to the minimumSize function:
install(Compression) {
deflate {
minimumSize(1024)
}
}
Specify Custom Conditions
If necessary, you can provide a custom condition using the condition function and compress data depending on the specific request parameters. The code snippet below shows how to compress requests for the specified URI:
install(Compression) {
gzip {
condition {
request.uri == "/orders"
}
}
}
HTTPS Security
HTTPS with the enabled compression is vulnerable to the BREACH attack. You can use various ways to mitigate this attack. For example, you can disable compression whenever the referrer header indicates a cross-site request. In Ktor, this can be done by checking the referrer header value:
install(Compression) {
gzip {
condition {
request.headers[HttpHeaders.Referrer]?.startsWith("https://my.domain/") == true
}
}
}
Implement Custom Encoder
If necessary, you can provide your own encoder by implementing the CompressionEncoder interface. See GzipEncoder as an example implementation.