Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

2 Answers

up vote 5 down vote accepted

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

searchable do
  # Your regular index
  # ...
  text :company_departments
end

def company_departments
  departments.map(&:name).join(" ")
end

reindex and try to search.

share|improve this answer
huh... thanks for correcting typo – Bashar Abdullah Sep 16 '11 at 16:40

You can also include a block that returns the text you want index right in the searchable block. For example:

searchable do
    text :innerdoc do
      innerdocs.map { |i| i.title + ' ' + i.description }
    end
end

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/

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.