I m currently configuring my schema.xml file and trying to figure out what s the best way to set up my documents. I use a RMDBS and thus many objects are relational.
Take this site for instance; a document typically consists of a question, followed by 0 or more answers. Say you d want to set up fields for this, you would have to declare all question and answer fields in the same document, the way I see it. But given the fact that there can be more than one answer, you would have to create a document for each answer. So that means each question and each answer is stored in a separate document, which contains fields for both.
I don t see a different approach for this kind of problem, however I am relatively new to Solr and document DB s, so I may be wrong.
In short: what are the best practices if I would implement such a schema?