See also: determine which value produced a hit in SOLR multivalued field type
This question has been asked and has been answered on Jan 2010.
With new Solr versions, the latest stable version being 3.5.0, Is there any Solr feature present to identify the multivalued field that has caused the hit.
For Ex:
<field name="id">ID</field>
<field name="field1">Term1</field>
<field name="field1">value2</field>
<field name="field1">Term2</field>
If I perform a search,
qf=field1&q=Term
Is there a way I can know that the values Term1 and Term2 caused the hit from the result returned from Solr ?