2

Using gcloud-node is it possible to query in batches (multiple queries in 1 network call)? I know it is possible to get and delete in batches, but can I do the same with queries somehow?

Dan McGrath
  • 41,220
  • 11
  • 99
  • 130
user2924127
  • 6,034
  • 16
  • 78
  • 136
  • As a note, including more information on why you need this and what your trying to do with it increases the chances it gets picked up as a feature request – Dan McGrath Sep 24 '16 at 14:19

1 Answers1

2

No, Cloud Datastore doesn't support query batches, so none of the client libraries can do this.

The alternative it to send queries in parallel instead.

Dan McGrath
  • 41,220
  • 11
  • 99
  • 130