I'm pretty new to Solr. I was reading the Solr highlighting documentation to discover whether there's a way, in the returned results, to highlight the stems of words that would be returned in an analysis query, but I was not able to find anything in the Solr documentation.
For example, if I use the Solr admin interface to index/query analyze named beetles running management"
on the Solr sample field text_en
it results in the last filter, the PSF
, or PorterStemFilter, changing it to name beetl run manag
. I'd like to find a way to query Solr so that it highlights the stems of any found matches.
For example, if my server data contained a phrase
naming beetles running managers
and I queried using the phrase
Named beetles running management
it would return the data in solr, naming beetles running managers
but I would like it to return that matching data highlighted:
nameing beetles running managers
because
name beetle run manag
are the stems of the words in my query that match the server data.