Does anyone know how to index and search embedded documents with sunpot_mongoid?
The question has been asked in the sunspot_mongoid issues, but has no solution, so far.
|
Does anyone know how to index and search embedded documents with sunpot_mongoid? The question has been asked in the sunspot_mongoid issues, but has no solution, so far. |
|||
|
|
|
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. |
||||
|
|
|
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/ |
||||
|
|