I have made a registration form for a blog I made using Google Datastore, and now I an trying to make it better.
First thing I seen that can be changed is the way that web application looks for the username in the data store, to see is the username already used.
I did it this way:
db.GqlQuery("SELECT * FROM UserData where username = :1", username)
Can you please refer me to better solution, which will be faster.
Thank you.