Replies: 2 comments 4 replies
-
https://quarkus.io/version/2.16/guides/resteasy#gzip-support You can enable GZip Support with the following properties:
|
Beta Was this translation helpful? Give feedback.
4 replies
-
After moving to 3.6. Fixed gzip. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We have a quarkus application running on Quarkus 2.16.6.Final and we are using
io.quarkus:quarkus-resteasy-jsonb
for REST service. We are trying to enable compression for the endpoints.We had enabled the compression knobs[1] but we were still not able to compress the api response.
When we were debugging we found that the response servlet had the
Content-Encoding
header set toIdentity
, which might have caused to skip compression encoding.On further debugging, we found that this code here, might be probable reason.
Here it was mentioned that we can remove this header, what would be the best way to remove
Content-Encoding
header without any side effects? (Can we remove it in one of the web filter?)[1] HTTP Compression properties in
application.properties
.Beta Was this translation helpful? Give feedback.
All reactions