I want to retrieve a list of documents from a list of doc_ids. Something akin to doing the following in SQL:
SELECT * FROM Documents WHERE id IN (1,2,3,167,91)
I see this method in the documentation, but that only retrieves a single document. For efficiency, I want to do a batch retrieval. Is this possible?
I don't think there's a batch
get
function, but there is an async version (search https://cloud.google.com/appengine/docs/python/refdocs/google.appengine.api.search.search forget_async
), so you could do something like (untested pseudo-code):