• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Liutauras Vilda
  • Ron McLeod
  • Jeanne Boyarsky
  • Paul Clapham
Sheriffs:
  • Junilu Lacar
  • Tim Cooke
Saloon Keepers:
  • Carey Brown
  • Stephan van Hulst
  • Tim Holloway
  • Peter Rooke
  • Himai Minh
Bartenders:
  • Piet Souris
  • Mikalai Zaikin

GWT performance question

 
clojure forum advocate
Posts: 3479
Mac Objective C Clojure
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi.
I have been looking at com.google.gwt.sample.kitchensink.KitchenSink and I saw alot of large HTML files (in size terms).
Which made me wondering about GWT performance at least from the client's view point (when he is loading the page) ?
Is my wondering valid ? or Google knows what they are doing ?
My second question is to Eric and Mr. Bear (since they are both authors and pro)
What do you think of GWT ? do you think it has a future ?
Thanks.
 
Sheriff
Posts: 67706
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I played around with GWT a little but personally have no interest. I guess I'm just too anal to let some tool write my code for me. I'd rather have complete control over the process.
 
author
Posts: 34
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by John Todd:
Which made me wondering about GWT performance at least from the client's view point (when he is loading the page) ?



The file size can be offset by the fact that GWT output was designed for easy compression. With the addition of a compression filter on your server-container you can cut the file size to a sixth.

Beyond this, the compiler gets smarter each version, and can optimize the code for the smallest possible file.

The GWT dev team (which is more than just Google) is quick to track down and fix reported performance issues.

The only issues that I have really seen are mega-apps with thousands of lines of code. There are at least a few people working on huge apps like this.

If you haven't seen Gpokr.com, you should take a look. It is a real-world GWT app, probably a few thousand lines of code. The code file is 220K (compressed it would be ~40K). Ryan, the guy that wrote that app said that the playing card images are a lot larger than the GWT compiled code.

Rob
http://roberthanson.blogspot.com
Co-Author GWT in Action
 
reply
    Bookmark Topic Watch Topic
  • New Topic