[google-appengine] Re: Guideline for performance tuning

2009-03-04 Thread Tony Arkles - home
Profile profile profile! Use the profiler, on the live app engine. On Mar 4, 8:42 am, ltcstyle wrote: > Hi All, > > When we developing an app, or implementing an idea, it's very likely we > focus on the features and functionalities first. > However, at some point, the performance could become

[google-appengine] Re: Guideline for performance tuning

2009-03-04 Thread Alex Popescu
On Mar 4, 4:42 pm, ltcstyle wrote: > Hi All, > > When we developing an app, or implementing an idea, it's very likely we > focus on the features and functionalities first. > However, at some point, the performance could become your concern unless you > do not expect it run nicely. > > I am wonder

[google-appengine] Re: Guideline for performance tuning

2009-03-05 Thread ltcstyle
Thanks Tony, But what to look at in profiler. And how do you judge it could be improved? For experienced developer, it maybe easy to spot the bottleneck, but for novice, how should they analyze the profile result and improved the performance. Cheers On Thu, Mar 5, 2009 at 1:14 AM, Tony Arkles

[google-appengine] Re: Guideline for performance tuning

2009-03-05 Thread ltcstyle
Hi Alex, Can't wait to see your experiences. Good luck. On Thu, Mar 5, 2009 at 7:36 AM, Alex Popescu < the.mindstorm.mailingl...@gmail.com> wrote: > > On Mar 4, 4:42 pm, ltcstyle wrote: > > Hi All, > > > > When we developing an app, or implementing an idea, it's very likely we > > focus on th

[google-appengine] Re: Guideline for performance tuning

2009-03-05 Thread thuan
Here's a short list of tweaks sitting on top of my mind: * Memcache everything -- because retrieving an item in the datastore can take time, cache it if you need to reuse at least twice. Also cache rendered pages. * Use a lighter and faster template engine than Django -- For sure, Django is grea