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
To add a configurable property (maybe named "compression-level" or "gzip-compression-level") to allow changing the default compression level (6 - gzip) to any other compression level that the developer needs to set.
The text was updated successfully, but these errors were encountered:
Motivation
In the server compression related documentation the only configurable parameters are enabled (boolean) and minimum size for a payload to be compressed (int).
There is no method in Reactor Netty HttpServer that allows to set the compression level (int) that is effectively available in Netty's HttpContentCompressor class but it's not available in the default SimpleCompressionHandler
It cannot be set in the Reactor Netty HttpServerResponse either.
Desired solution
To add a configurable property (maybe named "compression-level" or "gzip-compression-level") to allow changing the default compression level (6 - gzip) to any other compression level that the developer needs to set.
The text was updated successfully, but these errors were encountered: