Hi Matt,

As Dean says, RequestBuilder would return the string much faster.
However I would be worried that trying to do the sort of queries you
mentioned against raw text data would also be slow, or building some
complex data structures from it client side against which to run them
may be a) slow to build and b) slow to query.

Have you dismissed the idea of loading all your router config data
into a database and having the client make specific queries of
interest against that instead?

regards
gregor

On Oct 13, 10:30 pm, "Dean S. Jones" <[EMAIL PROTECTED]> wrote:
> If it's really just plain text, then RequestBuilder with a plain
> Servlet will be much faster.
> You avoid the Machinery of RPC. It may be you should then look into
> GZIP compression
> on the wire... there are several Servlet Filter packages out there as
> an example. GWT by
> default uses GZIP if the payload is over 256k I think. GZIP's
> usefulness is almost always
> a win... unless your server or client are really CPU starved.
>
> On Oct 13, 5:21 pm, mtwomey <[EMAIL PROTECTED]> wrote:
>
> > On Oct 13, 4:04 pm, "Dean S. Jones" <[EMAIL PROTECTED]> wrote:
>
> > > A bit of advice from lessons on my last project: Reduce your in-memory
> > > footprint of data to "only what you must have to display
> > > what is needed to the user at the time",... (except for cacheing
> > > frequently used data). Several hundred K of information is likely
> > > not useful to the client. i.e. showing more than 50-100 rows in a
> > > table is often counterproductive. There is no need to transmit
> > > data you can't convey, and that data takes up Several Hundred K
> > > memory...
>
> > Yes, I agree with this and typically aim to do this myself. In this
> > case the tool isn't responding with rows of data, but specially
> > formatted information based on the inquiry the user has performed and
> > it needs the entire configuration to derive the "answers". It's not a
> > case of a table of rows of similar data, unfortunately.
>
> > Thanks!
>
> > -Matt
--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/Google-Web-Toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to