Odg.: Re: How to speed up Hosted mode

2011-05-22 Thread maticpetek
@kabram and Juan - thank you for IE testing. Unfortunately we are all 
developing on OSX

After watching IO 2011 talks about GWT  performance, we will also refine 
our RPC methods - we should remove List and Object from method calls.

Regards,
   Matic
--
GWT stuff twitter  - http://twitter.com/#!/gwtstuff

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Odg.: Re: How to speed up Hosted mode

2011-04-19 Thread jaga
I noticed that if the temp directory wasn't cleared Eclipse took
longer and longer to start up. Up to 10 minutes. I wrote a simple
script which runs every boot to clear out the offending files. I am
not sure if this affects the compilation performance or not.

On Apr 18, 9:24 pm, Jeff Larsen larse...@gmail.com wrote:
 Lotus notes ouch!

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Odg.: Re: How to speed up Hosted mode

2011-04-19 Thread DaveC
I've also noticed that moving from a GWT 1.7 version of building apps
to the 2.1 way (UiBinder CellWidgets etc) makes a noticable
difference... (less java/ecmascript code I guess).

On Apr 18, 9:24 pm, Jeff Larsen larse...@gmail.com wrote:
 Lotus notes ouch!

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Odg.: Re: Odg.: Re: How to speed up Hosted mode

2011-04-19 Thread maticpetek
mike b,
  This is something to try - if I only change code in async block, maybe it 
will recompile only this part. But this will note have any effect on startup 
time.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Odg.: Re: How to speed up Hosted mode

2011-04-19 Thread Palo G.
The main problem is that every time when hosted mode is started all
classes are loaded. When you refresh hosted mode and your classes
doesn't implement Serializable then these classes will be realoaded
even when they were not modified. I don't really now if this will work
for GWT hosted mode, but works for other containers like Tomcat (GWT
used tomcat lite while ago i'm not sure what are they using now).

Maybe this can speed up your hosted mode refresh operation. And of
course set only one language and browser support.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Odg.: Re: How to speed up Hosted mode

2011-04-18 Thread Žiga Skalar
+1

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Odg.: Re: How to speed up Hosted mode

2011-04-18 Thread maticpetek
Palo,
  Thank you for solution with subproject. But I hope this will be my last 
step. I know that from architecture view  test driver development, 
separation between client and server, MVC, etc is right approach, but I 
really like this simple approach with Eclipse. Just code, run  debug in 
Eclipse, view result in FF or Safari, use FireBug, commit code into SVN, 
build with ant and publish. No libraries with versions, part working 
application, all functionality of application is a front of you.

Mike,
  Maybe I should really try code separation GWT.runAsync.

Paul,
  It look like the next versions of GWT will come with speed increase 
for us. I hope someone from GWT team would say something more about that

Regards,  
   Matic

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Odg.: Re: How to speed up Hosted mode

2011-04-18 Thread Paul Stockley
I am not sure runAsync would make any difference to dev mode. I think all 
the code still has to be compiled each time.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Odg.: Re: How to speed up Hosted mode

2011-04-18 Thread mike b
I just remembered one other major difference between my environment and my 
coworker's...  I downloaded the gwt 2.2 code branch from google and compiled 
it with only ie6 and gecko1_8 enabled. (see UserAgent.gwt.xml in 
gwt-user.jar)

Maybe async will help you compile only what has changed, rather than 
everythying?  This conversation just went out of my (so seamingly small) 
realm of knowledge!!!

Good luck,
Mike

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Odg.: Re: How to speed up Hosted mode

2011-04-18 Thread DaveC
I might be on the wrong track but have you checked the temp directory
where java writes out files (on windows xp it's something like c:/
documents and settings//*user*/localsettings) I regularly (once a
week) have to clear tens of thousands of files and GBs of data
otherwise eclipse (and lotus notes) comes to a crawl...

On Apr 18, 3:51 pm, mike b mbaker.t...@gmail.com wrote:
 I just remembered one other major difference between my environment and my
 coworker's...  I downloaded the gwt 2.2 code branch from google and compiled
 it with only ie6 and gecko1_8 enabled. (see UserAgent.gwt.xml in
 gwt-user.jar)

 Maybe async will help you compile only what has changed, rather than
 everythying?  This conversation just went out of my (so seamingly small)
 realm of knowledge!!!

 Good luck,
 Mike

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: Odg.: Re: How to speed up Hosted mode

2011-04-18 Thread Jeff Larsen
Lotus notes ouch!

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.