Closed
Description
Is there a way to run multiple requests in parallel?
It would be really nice to be able to execute requests asynchronously, e.g.
future = Query('MyKind').fetch_async()
result = future.get_result()
NDB has a great support for async operations using an event loop.
Is it something you guys might consider for future versions of the client?