Re: Speed-Optimization of an application (RPCs, Architecture)

2010-09-05 Thread Tanguy Le Barzic
2010/9/3 Olivier TURPIN olivew...@gmail.com in a near future if you need to play with command pattern you could find some interesting hints with thoses articles : - Tutorial explaining the basics of gwt-dispatch : http://borglin.net/gwt-project/?page_id=283 - Nice articles about batching

Re: Speed-Optimization of an application (RPCs, Architecture)

2010-09-02 Thread Olivier TURPIN
in a near future if you need to play with command pattern you could find some interesting hints with thoses articles : - Tutorial explaining the basics of gwt-dispatch : http://borglin.net/gwt-project/?page_id=283 - Nice articles about batching with gwt-dispatch (by the M. David Chandler)

Re: Speed-Optimization of an application (RPCs, Architecture)

2010-09-01 Thread Fabian
Hi Tanguy, thank you for your answer. I think for my app it is too late to switch to this kind of using commands and due to that having the chance to batch them. (since i have only a few days to finish it). I will consider it in my next apps. Thanks for telling me, that fewer rpc calls are

Re: Speed-Optimization of an application (RPCs, Architecture)

2010-08-31 Thread Tanguy Le Barzic
Hi Fabian, Generally speaking, the fewer rpc calls the better, as browsers generally limit the number of simultaneous (http) calls to the same domain to two. If you make more, they will be queued. Therefore, it is often a good practice to batch these calls (see for example