I have let's say 1000 key names whose existance I want to check in the Google App Engine datastore, but without fetching the entities themselves. One of the reason, beside possible speedups, is that keys-only fetching is free (no cost).
ndb.get_multi()
allows me to pass in the list of keys, but it will retrieve the entities. I need a function to do just that but without fetching the entities, but just True
or False
based whether the specified keys exist.