确定 rufus-tokyo 查询将返回的记录数的最佳方法是什么?
我想在运行查询之前确定东京内阁表上的查询将返回的记录数。我使用 rufus-tokyo Ruby gem 作为我的界面。最好的方法是什么?
I would like to determine the number of records that a query on a Tokyo Cabinet Table will return before I run the query. I am using the rufus-tokyo Ruby gem as my interface. What is the best way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仔细查看github上的代码,我想我找到了答案。它将使用 db#query_count 方法返回记录计数。下面是使用 query_count 分页记录的示例:
Looking thorough the code on github, I think I found the answer. It would use db#query_count method which returns a record count. Here's an example of paging records using query_count: