[google-appengine] App Stats time measurements for GQL queries way off?

2011-09-07 Thread Pol
Hi, I'm trying to optimize our Python app and have App Stats installed. The code to measure (simplified): query = db.GqlQuery(SELECT * FROM Event WHERE ANCESTOR IS :1 ORDER BY max_date DESC, self.user.key()) if cursor: query.with_cursor(cursor) start_time = time.time() for

Re: [google-appengine] App Stats time measurements for GQL queries way off?

2011-09-07 Thread Ikai Lan (Google)
AppStats should only be tracking the RPC, not the time it would take to deserialize, so your guess is probably correct. How many entities are you retrieving? -- Ikai Lan Developer Programs Engineer, Google App Engine plus.ikailan.com | twitter.com/ikai On Wed, Sep 7, 2011 at 11:12 AM, Pol