Re: math performance

2011-03-22 Thread Raphael André Bauer
On Mon, Mar 21, 2011 at 9:28 AM, Albert Lacambra alacam...@gmail.com wrote: Good to know! I supose that that is the only case, n? For us is much most faster in js mode that in dev mode. Interesting. For us it was the complete opposite :) Depends of course on the browser and the mathematical

Re: math performance

2011-03-21 Thread Raphael André Bauer
On Sat, Mar 19, 2011 at 6:24 PM, Y2i yur...@gmail.com wrote: I do a lot of math calculations (exp, log, sqrt, pow, asin, sin) but I haven't noticed any delays yet. Also a tiny notice from my side: Mathematical calculations in dev mode are most likely much faster than when you execute the real

Re: math performance

2011-03-21 Thread Albert Lacambra
Good to know! I supose that that is the only case, n? For us is much most faster in js mode that in dev mode. Al On 21 March 2011 09:24, Raphael André Bauer raphael.andre.ba...@gmail.comwrote: On Sat, Mar 19, 2011 at 6:24 PM, Y2i yur...@gmail.com wrote: I do a lot of math calculations (exp,

Re: math performance

2011-03-19 Thread Y2i
I do a lot of math calculations (exp, log, sqrt, pow, asin, sin) but I haven't noticed any delays yet. Thanks for the heads up, I'll keep this in mind. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: math performance

2011-03-18 Thread Albert Lacambra
I don't really think that that would kill the server neither the client. However, it is also right that javascript that runs in a webbrowser is not the best platform to do floating arithmeticalcomplex calculations. You should also think, that although it is something normal that a client have a

Re: math performance

2011-03-18 Thread Uemit
You can check the compiled code and see how the mathematical calculations are translated into javascript. For these kind of complex calculations the Native Client SDK ( http://code.google.com/p/nativeclient-sdk/) would be a perfect fit but unfortunately it is only supported in the latest

math performance

2011-03-17 Thread csillag
Hi there, We are developing an application which neds to do some heavy calculations on the client side. We are using the Java double type, standard arithmetic operations, plus sqrt and power from math. When I run the app on dev mode, the code runs OK, but when I actually deploy it, the time

Re: math performance

2011-03-17 Thread joe kolba
Why do you have to do it on the client side? why not just do all of your processing on the server side and send the client the results. Not every client is going to have a machine that can do heavy calculations and they might actually be using IE On Thu, Mar 17, 2011 at 9:04 PM, csillag

Re: math performance

2011-03-17 Thread csillag
On márc. 18, 02:25, joe kolba joekolb...@gmail.com wrote: Why do you have to do it on the client side?  why not just do all of your processing on the server side and send the client the results. Because I do not want to kill the server; the clients can take care of themselves.  Not every client