Hi,
I read an article on GWT serialization;
GWT - Serialization strategy is not as sophisticated as Java
It says that the GWT serialization is not as sophisticated as that of Java. In java, as per my knowledge if I have a list of objects and if a particular object is repeated the object data is serialized only the first time , the next time if the same object is encountered only the reference of the object is passed.
My question is if the Gwt serialization is not sophisticated does that imply that the object data may be serialized many times. If such is the case I have to improvise on my performance using some other techniques while passing same objects to the server.
Thanks and Regards,
Suhas