如何使用 sunspot SOLR 搜索嵌入的 mongoid 文档?
有谁知道如何使用 嵌入文档 /github.com/jugyo/sunspot_mongoid" rel="nofollow">sunpot_mongoid?
这个问题已经在 sunspot_mongoid issues 中提出,但到目前为止还没有解决方案。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
刚刚尝试过。这是一个黑客,但它适用于搜索嵌入文档,并返回保存它的父文档。这就是你想要的吗?如果是这样,那么就这样做。定义方法,以数组形式返回所需的嵌入字段,然后对该数组建立索引。
假设您有类公司,嵌入部门
重新索引并尝试搜索。
Just tried it. It's a hack, but it works for searching embedded documents, and returning the parent document holding it. Is that what you want? If so, do this then. Define method that returns the embedded fields you want as an array, and then index that array.
Assuming you have class Company, with embedded departments
reindex and try to search.
您还可以包含一个块,该块返回您想要在可搜索块中建立索引的文本。例如:
它从嵌入的“innerdocs”数组中获取标题和描述,并将其添加到主文档的索引中。
太阳黑子文档有关于“可搜索”块语法的最佳信息:
http://outoftime.github.com/sunspot/docs/
You can also include a block that returns the text you want index right in the searchable block. For example:
That takes the title and description from an embedded array of "innerdocs" and adds it to the index for the main document.
The sunspot docs have the best info on the syntax for the "searchable" block:
http://outoftime.github.com/sunspot/docs/