I serve tiny chunks of minimized javascript through the Google App Engine, and I think the GZIP-unGZIP process slows me down unnecessarily. (To clarify, I send them quickly to different sites that request them, and I optimized most of the other parts of the process).
For reference, the files are so small that the gzip savings may be less than the header "Content-Encoding: gzip".
However, from the documentation
If a client sends HTTP headers with a request indicating that the client can accept gzipped content, App Engine automatically compresses the response data and appends the corresponding response headers.
Is there a parameter in app.yaml or somewhere that I can disable gzip-ing? This should be possible, as some files will be unpacked.
performance google-app-engine gzip
Dave
source share