Hi,

We have a screen that contains around 350 controls. We are facing a
heavy
performance degradation issue when we repetitively open this screen
and
close the same. When analyzed, what we found taking, comparatively,
longer
each time, is the RPC time (to be more precise what is getting majorly
increased each time is the time difference between the timings when
RPC
gets dispatched from Client and reaches Server).

Following are some stats on the same:

1st RPC call:

Client to Server = 3.196 seconds
Server operations = 1.879 seconds
Server to Client = 0.063 seconds


10th RPC call:

Client to Server = 5.451 seconds
Server operations = 2.569 seconds
Server to Client = 0.094 seconds

Which clearly shows that after 10 RPC calls performance gets degraded
by
around 3 seconds.

There are other operations too that adds to performance degradation
after
continuous iterations, but the one that heavily contributes to the
performance degradation is the RPC one mentioned above.

We are using Internet Explorer 6. What we do on close of this screen
is
clearing the absolute panel and assigning null to the reference of the
screen i.e.

     baseCurrent.getAbsMainPanel().clear();
     baseCurrent = null;

where baseCurrent is the reference of current screen.


Any help would be highly appreciated.

Regards,

Vikrant

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to