I have a question about the possibility of creating nested fields in solr. Google searches told me something about the band, but I think it's just for the result?
I want to have a structure like this:
- Category1
- paragraph 1 (9)
- paragraph 2 (8)
- Category2
- Category3
I tried something like this:
<field name="Category" type="string" indexed="true" stored="true" multiValued="true" required="false"> <field name="MiscellaneousName" type="string" indexed="true" stored="true" multiValued="true" required="false"/>
But that will not work.
Update: Categories and items must be faceted. The Everey (= facet) element is part of the category. One category can have several or zero fields. Categories and items are stored in the database, and I want to dynamically index them. I only want to search for elements, and categories only text. I am using solr 3.3 with Tomcat 7.
source share