I want to do a simple Key-Only query using a key (so to test the existence of it in the datastore).
Whats the simplest way in java of doing this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
For checking the existence of one entity by key, the simplest and cheapest would be to simply use
get():Get (1 read operation) is cheaper the query (1 read + 1 small): http://code.google.com/appengine/docs/billing.html