You could try to use
The Term Vector Component (TVC) is a SearchComponent designed to
return information about documents that is stored when setting the
termVector attribute on a field:
<field name="features" type="text" indexed="true" stored="true" multiValued="true" termVectors="true" termPositions="true" termOffsets="true"/>
Changes required in solrconfig.xml
You need to enable the TermVectorComponent in your solr configuration (this is already in the example solrconfig.xml):
<searchComponent name="tvComponent" class="org.apache.solr.handler.component.TermVectorComponent"/>
A RequestHandler configuration using this component could look like this:
<requestHandler name="tvrh" class="org.apache.solr.handler.component.SearchHandler">
<lst name="defaults">
<bool name="tv">true</bool>
</lst>
<arr name="last-components">
<str>tvComponent</str>
</arr>
</requestHandler>
More information : https://wiki.apache.org/solr/TermVectorComponent