Apache Solr: Faceted Search on multivalued fields
问题 Im currently working on a solr based search application. I have two multivalued fields for example: The data is read out of a database. <int name="id">1</int> <arr name="type"> <str>Marke</str> <str>Modell</str> <str>Fahrzeugtyp</str> <str>engine</str> </arr> <arr name="value"> <str>Volkswagen</str> <str>Golf</str> <str>Golf TDI</str> <str>V-Engine</str> In my current solr configuration there is no relationship between these two multivalued fields. So that i can say "Marke = Volkswagen".