> > The app I'm developing is highly dependent on auth. > > Does it mean that any request that uses auth won't be faster than 200ms on > GAE? >
Note, if you're just checking for login, I don't think you need to call auth.define_tables() (that should only be needed for registration, login, and checking permissions/membership). Also, make sure to use auth.define_tables(migrate=False) to avoid migrations on the auth tables in production. Anthony --

