couchdb 分页
我需要在我的应用程序中使用分页。我怎样才能用 couchdb 实现这一点?我查找了在线资源,他们指导我们使用 startkey 和 limit 以及 couchdb 进行分页。
有人可以发布一个简单的例子吗,这会很有帮助。
谢谢!
I need to use pagination in my application. How can i achieve this with couchdb. I have looked up for online resources, they direct us to use startkey and limit with couchdb for pagination.
Could someone post a simple example please, it would be very helpful.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以查看之前的讨论。
有多种选项可以实现视图分页,最有效的方法是遵循 CouchDB 指南。
如果您正在寻找一个可行的示例,您可以查看这个库,它是用 Java 编写的。
You may check out this previous discussion.
There are multiple options to implement pagination over views, the most effective way is by following the algorithm mentioned on CouchDB guide.
If you are looking for a working example, you may check out this library, it's in Java.