when should you consider replacing gwt rpc with rpc plus?
4 views
Skip to first unread message
denis56
unread,
Aug 21, 2010, 10:15:21 AM8/21/10
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to DotSpots Open Source
Hi everyone,
We are currently inspecting our GWT app's performance (mostly with
Firebug profiler) and have noticed that there are quite a lot of
eval() calls being made. The app gets very frequent updates in the
form of ArrayList of objects, hence is our guess that these eval calls
should be caused by object deserialization.
Would switching to GWT RPC Plus improve RPC performance: deserializing
received objects? I assume that by giving up standard rpc we would
lose the benefit of low traffic thanks to efficient compression of
GWT's native rpc.
Is there a tutorial available on how to plug GWT RPC plus into an
existing system?