Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

speeding up refresh for GWT projects

I'm developing a project, using GWT.FireFox Browser and Eclipse IDE.

when the project is running and i refresh my browser for client package changes, it takes too long. maybe 6 to 10 seconds.

maybe cause be project became big. how can i speed-up the refresh process on the browser ?

like image 993
Ammar Bozorgvar Avatar asked Nov 01 '10 13:11

Ammar Bozorgvar


1 Answers

Unfortunately there's not a lot you can do to speed up Development Mode refresh time, 6-10 seconds isn't a terrible amount of time comparatively (especially vs. not using Dev Mode and doing a full recompile each time).

If you haven't tried code splitting yet, you will almost definitely see a decrease in recompile time, and a decrease in page load time in general once your app is deployed. But beyond that I can't really think of anything that would drastically reduce your Dev Mode refresh time.

like image 130
Jason Hall Avatar answered Sep 28 '22 03:09

Jason Hall