Hi all. I'm writing a GWT application where i would like to keep on the client side a generic metric store - a metric being composed by a date, a name, a value, and belonging to a domain (hierarchical, 'servicetype.servicename.blabla'). There are multiple remote sources for the metrics data, which are periodically queried so that the client store is kept up to date - using JSONP to allow cross site data querying.
As a way to learn GWT i've written my own client side metric store, a good way to play and learn GWT's unit tests, benchmarks, etc. Now that this is done, i'm looking for a way to replace it with something standard :-) My implementation is not efficient and was done quickly using TreepMap(s), first keyed by Date and then by domain, as keys are sorted and i get a fast prototype running. But it's not the most flexible implementation. Do you have suggestions on libraries that will help me with this? I would love to use Gears, but it requires a plugin installation and i have clients using browsers in remote terminal services where the plugin won't be installed, and several others using x64 linux (i managed to install the plugin in my 64bit linux, but it seems to be an unofficial patch). Thanks a lot in advance, Ricardo --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. 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 -~----------~----~----~----~------~----~------~--~---
