[gwt-contrib] loading live, instantly-generated data from the server and displaying it as a line graph

2011-10-25 Thread Arif
Hi, I have created a desktop application that I need to convert and deploy as a web application. Here is my project's description: 1. I have a Java application (written in NetBeans) that produces an XML file each time it runs. This XML file is fed as an input to a Java simulation program (which

[gwt-contrib] Re: loading live, instantly-generated data from the server and displaying it as a line graph

2011-10-25 Thread Jeff Larsen
This is probably a better discussion for the users group, but I'll answer it anyway. I'm using HighCharts for some of my charting needs, you'll just need to send the data down to the charting software and either poll for new data, or implement server push/cometd and have it update the graph

[gwt-contrib] Re: Switch to internal implementation of StringInterner to avoid class loader (issue1578804)

2011-10-25 Thread skybrian
Surprisingly, using a ThreadLocal is the slowest so far. Going back to using shards. http://gwt-code-reviews.appspot.com/1578804/ -- http://groups.google.com/group/Google-Web-Toolkit-Contributors

[gwt-contrib] Re: Switch to internal implementation of StringInterner to avoid class loader (issue1578804)

2011-10-25 Thread Toby Reyelts
This is a little too surprising. ThreadLocal accesses are very fast (think 1us). On Tue, Oct 25, 2011 at 9:25 PM, skybr...@google.com wrote: Surprisingly, using a ThreadLocal is the slowest so far. Going back to using shards.

Re: [gwt-contrib] Re: Switch to internal implementation of StringInterner to avoid class loader (issue1578804)

2011-10-25 Thread Ray Cromwell
Maybe it is GC driven, if you have N threads each with a copy of all of the Strings in the program, collections take longer? -Ray On Tue, Oct 25, 2011 at 8:11 PM, Toby Reyelts to...@google.com wrote: This is a little too surprising. ThreadLocal accesses are very fast (think 1us). On Tue,