0

I have this result in App Stats for AppEngine, and I can't work it out, it looks like each part performs ok, but there is a huge gap. Any Ideas?

AppStat Result

Context: It's a registration system, it checks if the username/email already exists, send an email to the user, puts the data into the database.

Chris
  • 2,739
  • 4
  • 29
  • 57

1 Answers1

2

Appstats only shows the timing of the GAE API/RPC calls. It's quite possible that all the time is spent in your code, or another library you use that isn't waiting for GAE RPC calls. You have to analyse performance of that code on your own.

dragonx
  • 14,963
  • 27
  • 44