是否可以通过 Google App Engine 中的光标确定您在结果集中的位置?
如果我有一个用于查询的 Cursor 对象,有什么方法可以知道我在结果集中有多远,或者我需要自己维护一个计数器吗?
如果重要的话,我正在使用 GAE 的 Java 实现。
If I have a Cursor object for a query, is there any way of knowing how far through the resultset I am or do I need to maintain a counter myself?
If it matters, I'm using the Java implementation of GAE.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不。游标为结果集中的某个位置(键之间的位置)添加书签,而不是偏移量。
No. Cursors bookmark a location in a result set - the position between keys - not an offset.