可以过滤查询以便只返回第 20 到 30 行吗?
这似乎没有在这里提到: https ://developers.google.com/appengine/docs/java/datastore/queries
可以过滤查询以便只返回第 20 到 30 行吗?
这似乎没有在这里提到: https ://developers.google.com/appengine/docs/java/datastore/queries
使用整数偏移量会在返回第一个结果之前跳过指定数量的结果。在上面的示例中替换以下行将返回第六到第十个最高的人,而不是五个最高的人:
return pq.asList(FetchOptions.Builder.withOffset(5).limit(5));
https://developers.google.com/appengine/docs/java/datastore/queries#Retrieving_Results