I am interested in minimizing the time in between each iteration of my GWT software development. My environment is: Eclipse + Google's GWT Eclipse plugin + GWT 2.3 SDK.
Multicore:
Most of the time (about 90%) I waste in GWT development is spent waiting for the browser to refresh after I have made some code changes in development mode. (1.) If I migrate my development environment to a big server with 24 cores, does GWT's 'development mode' have any way to make use of the extra cores?
Memory:
The 'big server' also has 32 GB of memory, I know that you can allocate more memory for GWT's run configuration by modifying the '-Xmx512m' to specify more memory. (2.) Would allocating more memory via '-Xmx' command line switch speed up refresh times?
(3.) Another way to frame question 1 and 2 is to ask: What is the bottle neck for refresh times during 'development mode'?
(Less important (because I do not do full compiles often aka 90/10 rule): Does the "GWT compile" benefit from more cores? Does "GWT Compile" benefit from more memory?)