使用 Run 方法和 Query 值遍历查询结果时,Datastore 会对结果进行批量检索。默认情况下,每批包含 20 个结果。您可以持续遍历查询结果,直到返回所有结果或者请求超时。
如需遍历与查询匹配的每个实体,请使用 Run 方法获取 Iterator;借助 Iterator 的 Next 方法,可以对每个实体进行逐个检索。
q:=datastore.NewQuery("Person")t:=q.Run(ctx)for{varpPersonk,err:=t.Next(&p)iferr==datastore.Done{break// No further entities match the query.}iferr!=nil{log.Errorf(ctx,"fetching next Person: %v",err)break}// Do something with Person p and Key kdoSomething(k,p)}
q:=datastore.NewQuery("Person")varpeople[]Personkeys,err:=q.GetAll(ctx,&people)iferr!=nil{log.Errorf(ctx,"fetching people: %v",err)return}fori,p:=rangepeople{k:=keys[i]// Do something with Person p and Key kdoSomething(k,p)}
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["很难理解","hardToUnderstand","thumb-down"],["信息或示例代码不正确","incorrectInformationOrSampleCode","thumb-down"],["没有我需要的信息/示例","missingTheInformationSamplesINeed","thumb-down"],["翻译问题","translationIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2025-03-26。"],[[["This API is designed for first-generation runtimes, with a migration guide available for upgrading to App Engine Go 1.12+ second-generation runtimes."],["Query results can be iterated through using the `Run` method, which retrieves results in batches, or retrieved all at once with the `GetAll` method."],["Projection queries allow for the retrieval of selected properties from an entity, which is faster and more cost-effective than retrieving full entities."],["Keys-only queries, created by calling the `KeysOnly` method, save resources by only returning the keys of matching entities."],["You can limit the number of results returned by a query in a single batch by specifying a limit using the `Limit` method."]]],[]]