My point exactly, Its working without me doing any things, but my *.cache.html files are about 1.05 MB, the initial loading takes a lil while. And this is not automatically compressed by appengine. Can this be something to do with appengine limit. Is there a way to compress cache.html files?
Once the cache file is download the app runs blazzing fast. But the initial download will definitely translate into a loss of bandwidth from the daily quota. If I gzip the cache.html, the application is broken, as the reference is to *.cache.html, and not to *.cache.html.gz Any ideas? On Fri, Feb 11, 2011 at 6:28 PM, Harald Schilly <[email protected]>wrote: > On Friday, February 11, 2011 1:22:58 AM UTC+1, Saim wrote: >> >> >> Accept-Encodinggzip,deflate >> > > I don't understand what you did, but I think you do not have to do > anything. read this: > http://code.google.com/appengine/kb/general.html#compression > > Just the quoted line from you above is enough to tell appengine to send the > data compressed. Much more importantly, make sure that you tell appengine to > set the cache time of those "*.cache.html" files to something like 356d and > disable client side caching for non *cache* files!!! (i.e. *nocache* : 1s or > so) > > please read this: > > http://code.google.com/appengine/docs/python/config/appconfig.html#Static_File_Pattern_Handlers > > h > > -- > You received this message because you are subscribed to the Google Groups > "Google Web Toolkit" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/google-web-toolkit?hl=en. > -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
