I'm not sure it's possible to make a general statement; it depends on your application.
If you haven't already done this, take a look at -compileReport; it can show you what contributes to the size of your application. https://developers.google.com/web-toolkit/doc/latest/DevGuideCompileReport Also try adding these options to reduce the size of your generated application: -XdisableClassMetadata (breaks getClass().getName()). -XdisableCastChecking (eliminates ClassCastException). https://developers.google.com/web-toolkit/doc/latest/DevGuideCompilingAndDebugging#DevGuideCompilerOptions On Jul 3, 5:03 am, regnoult axel <[email protected]> wrote: > Hello, > > I am living in Bolivia and here, I have a connection equals to 200 Kbps (it > is very poor). :( > > So I was asking if google engineers are considerating a minimum bandwith > when testing their app ? > > This is important, because when starting my aplication > (www.mananaseguro.com) , even if I am trying to optimize it, I have for the > moment 17 seconds to wait to see the first page (and my app is minimalist) > for* the first time*. Then I think it is due to the cache, it loads a lot > faster (4 seconds, such as when I open GMAIL here). > > In other terms, does '*Google*' recommend a minimum Internet connexion to > use a GWT application in production ? > > Could you give me indications or details explaining why the first time > loading is a lot slower and then why it loads quickly (I think it is > because informations are stocked in the browser cache, but what kind of > information exactly ?) > > Thank you for your help, -- 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.
