pal, you could try using IE8 and the profiler it is shipping with to determine which methods are being called (compiling your code first with -pretty) and which one take more time than others. In our project we thus found out that IE was behaving bad on equals() and equalsIgnoreCase() methods which we replaced then by using hashmaps.
HTH Dominik On Oct 6, 3:15 pm, Chris Ramsdale <[email protected]> wrote: > Pal, > In regards to speed and load times, there is generally no "silver bullet" > and each browser is wildly different. That said the the browser's Javascript > interpreters and rendering engines generally have the greatest impact on > application performance. In your case, determining exactly what is causing > your app to load 3x times slower on IE is difficult given that FF and IE > have completely different JS interpreters (different names depending on what > version you are running) and rendering engines (Trident on IE and Gecko on > FF). > > If you would be able to provide the code that is being executed on startup, > or some related design doc we may be better positioned to provide some > guidance. > > Thanks, > Chris Ramsdale > > On Tue, Oct 6, 2009 at 6:03 AM, pal <[email protected]> wrote: > > > We have developed a stand alone web based application using GWT and > > performance of this application (Page Load time) in Mozilla firefox > > browser is 3 times better than the IE browser. Any help in improving > > performance of this application in IE browser would be great help to > > us. > > > Thanks, > > Pal --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
