GWT hosted mode is extremly slow

2010-08-26 Thread haimke
I am using GWT 2.0.3, firefox 3.6.8, gwt plugin, Eclipse Galileo, embedded Jetty gwt compilation time ~1minute and its the app running speed is ok but using hosted mode in firefox (or IE) is terribly slow and unpredictable. sometimes firefox is stuck for 30 seconds, sometimes for 8 minutes

Re: GWT hosted mode is extremly slow

2010-08-26 Thread jocke eriksson
I found out that if you split your ClientBundles, memory consumptions goes down. So if you have large ClientBundles with many images try to divide them. Worked for me. 2010/8/26 haimke haim.schind...@gmail.com I am using GWT 2.0.3, firefox 3.6.8, gwt plugin, Eclipse Galileo, embedded Jetty

Re: GWT hosted mode is extremly slow

2010-08-26 Thread haimke
I don't knows what ClientBundles are, and I am not using images so I probably don't have it at all. I find it awkward how could Google develop Gmail and Wave using GWT when it works so slow using hosted mode. -- You received this message because you are subscribed to the Google Groups Google

Re: GWT hosted mode is extremly slow

2010-08-26 Thread Gal Dolber
Gwt isn't the problem... java is a pig How big is your app? If it is really big and you are instantiating everything when it loads it will be really slow. You need to code-split everything so you will get instantiated only what you are working on, when you lunch development mode. GWT.runAsync or