I am completely to new to Objectify. I am using Objectify for GAE application , I have one interesting question in Objectify filter condition
I am to executing a load method to do some filter like
objectify.load().type(User.class).filter("email", userEmail).first().now();
My Question is, above statement doesn't work until I mark email field in User Entity class as @Index ? Why is this required ? . If we don't put @Index on field, we get null result.
Could some one clarify my doubt, I am little concern about marking my fields as @Index as it might cost space and it(@Index) is one of the candidate to grow data in GAE Datastore.
Thanks to SO post Objectify 4 Filter not working . It helped me to solve my problem.