My Drupal 6 site uses 3 custom node types that are hierarchically organized: page, book, library. I want to use Solr to index and search the content.
I want the search to return only Book nodes in the results.
But I want the search to use the contents of children (pages) and parents (libraries) when performing the search.
Can Solr be configured to index & search in this way?
Thanks!
You are going to have a couple of issues with this:
I would recommend you don’t try to implement this, but if you did you could look at the Apache Solr Attachments module. You would have to do something similar… basically:
Or you could create a single giant field with a bunch of searchable text and use that as part of your searches.