I have a couple of Apps, one acting as client and another one as a REST server.
In order to improve performance I decided to use gzip, but after applying it and looking at the server logs I see no difference in the size of the data being transmitted.
1. Call performed from a REST Client on my local machine (without gzip):
2012-09-05 23:43:23.935 /rest/RatePeriod 200 3544ms 942kb Apache-HttpClient/4.0.1 (java 1.5)
2. Call performed using gzip
2012-09-05 23:42:10.466 /rest/RatePeriod 200 3776ms 22kb gzip
3. Call performed from one app to another (without accept gzip headers)
2012-09-05 22:44:11.691 /rest/RatePeriod/ 200 3489ms 22kb AppEngine-Google; (+http://code.google.com/appengine; appid: s~XXXXXX)
Is some kind of compression applied automatically by GAE in the communication between instances?