Hello,
I want to be able to check if a key_name for my model exists in the datastore. My code goes:
t=MyModel.get_by_key_name(c)
if t==None:
#key_name does not exist
I don't need the object, so is there a way (which would be faster and cost less resource) to ccheck if the object exist without returning it? I only know the key name, not the key.