I have a situation in which, ideally, I would like to combine data parsed from two separate web pages into a single document, which would then be indexed into Solr. I have looked at the options for passing two separate documents to Solr and combining the data at query time, but none of the available options fit my needs very well.
Does anyone have any suggestions on how to approach this? Do I need to write a custom Indexer or is there a better approach - perhaps reading the second page as the first page is being parsed? If I write a custom Indexer, which class(es) would I use to read the second document from the segment database? It may be worth noting that there is a fixed relationship between the urls of the two pages, so given the url of either one I can derive the url of the oher. Thanks for any ideas

