在 RightAWS Gem SDB SELECT 中一次仅返回 100 条记录。我想选择更多
我们使用 SDB 来存储大量数据,目前我正在使用 RightAWS gem for Ruby 来访问这些数据。我正在尝试获取返回大约 16,000 个项目的查询结果。这个过程需要很长时间,因为每个令牌我只能返回 100 个,因此必须发出 160 个请求。文档说:
限制是返回结果的最大数量(默认值:100, 最大限度。 2500)。
我已经在自己的 php 代码中完成了此操作,但我找不到让 RightAWS 执行此操作的方法。有办法吗,还是我必须做别的事情?
We use SDB to store lots of data and currently I'm using the RightAWS gem for Ruby to access that data. I'm trying to get the results of a query which returns about 16,000 items. This process takes a long time because I only get 100 back each token and, as a result, 160 requests must be made. The documentation says:
The limit is the maximum number of results to return (default: 100,
max. 2500).
I've done this in my own php code, but I can't find a way to make RightAWS do it. Is there a way, or will I have to do something else?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
所以,我觉得自己真的很傻。事实证明,我所要做的就是在查询末尾添加“LIMIT [number]”。我确信我尝试过,但我想没有。
So, I feel really silly. It turns out that all I had to do was add "LIMIT [number]" at the end of my query. I was sure I tried that but I guess not.