Reputation: 292
I'm using the low-level google datastore api and I want to query by the key property and another property (let's call it category).
I need to query based on a list of keys for which I'll use the IN operator. I know that the max. number of values you can provide for the IN clause is 30.
I have 2 questions:
Thanks, Keyur
Upvotes: 0
Views: 416
Reputation: 101149
If you can avoid doing IN queries, though, do so - an IN query is internally evaluated as multiple equality queries, one per element in the IN.
Upvotes: 1