FYI, AutoBeanCodex.decode uses StringQuoter, whose super-source implementation (used in compiled code only) uses JsonUtils.safeEval, which in turn uses eval() in IE6 to "parse" the JSON, after checking it with a couple regexps. So maybe the regexps are slow with large strings? You could try overriding the StringQuoter (put your version earlier on the classpath) with a version that uses JsonUtils.unsafeEval to see if it makes a difference (at your own risks).
But AutoBeans do create a lot of objects (an AutoBean and a "wrapper" implementing your interface for each object in the JSON), and that could really be the bottleneck in your case. -- 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.google.com/d/msg/google-web-toolkit/-/CZPQ2TVlK7UJ. To post to this group, send email to [email protected]. 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.
