铁轨 + Thinking-Sphinx 结果 ids
嘿。我使用Rails 3.0.1 和thinking-sphinx。
如何从 sphinx 请求中获取 ID 列表?如果我这样做,
MyModel.search('boby').map(&:id)
它会向数据库发出一个多余的请求。
Hey. I use Rails 3.0.1 with thinking-sphinx.
How can I get a list of IDs from a sphinx request? If I do
MyModel.search('boby').map(&:id)
it makes a request to the database which is redundant.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以调用
search_for_ids
方法仅返回主键值,而不是 ActiveRecord 对象的实例。You can call
search_for_ids
method to return just the primary key values, instead of instances of ActiveRecord objects.