Re: RPC serialization/deserialization is very slow

2012-05-08 Thread Brandon Donnelson
What exactly are you serializing? How big is the object your trying to pass? Brandon Donnelson http://c.gwt-examples.googlecode.com -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.g

Re: RPC serialization/deserialization is very slow

2012-05-07 Thread Jacob Glusted Madsen
Thanks for your answer! We have now tried different solutions to the problem. We did some experiments using JSON. But it was still to slow. We ended up with a solution, where we did some redesign of the GUI-interface forcing the user to filter data before loading it. It seemed to be the only re

Re: RPC serialization/deserialization is very slow

2012-04-25 Thread Jens
Fastest possible solution is to switch to pure JSON string + Overlay Types which would result in nearly no GWT overhead. If you don't want to switch your RPC mechanism or its still too slow then you have to fetch your data in smaller chunks. For example presenting 1 objects in a UI list doe

Re: RPC serialization/deserialization is very slow

2012-04-25 Thread Paul Robinson
On 25/04/12 11:17, Jacob Glusted Madsen wrote: Does anyone have any sugestions on how to make the RPC serialization/deserialization run faster ?? The biggest difference you can make to RPC speed is to send less data over the network. You should make sure you're only sending stuff that you rea

RPC serialization/deserialization is very slow

2012-04-25 Thread Jacob Glusted Madsen
Hi, We are having problems with serialization/deserialization of RPC data. This process seems to become very slow when the amount of data increases The problem seems to be greatest in ie8 It runs faster in Crome! Does anyone have any sugestions on how to make the RPC serialization/deserializati