I am wondering how the prefetching described in
http://code.google.com/intl/de-DE/webtoolkit/doc/latest/DevGuideCodeSplitting.html
works exactly.
Will the code always be loaded when a runAsync call is performed or
just the 1st time the method is invoked?
In my opinion it makes only sense if the code is just loaded once.
Otherwise I don't really see a benefit in using the code split/
prefetching.
If it is just loaded only once. How much is the overhead in calling
the runAsync method (when the code is already loaded)?
Thanks for your help
Regards
Watnuss
On Dec 6, 11:03 am, Watnuss <tonk...@gmail.com> wrote:
> Hi,
>
> I am wondering how the prefetching described inhttp://code.google.com/intl/de-DE/webtoolkit/doc/latest/DevGuideCodeS...
I think I will just use the prefetching and see how the application is
behaving compared to the application without code splitting and choose
then.