On 4/24/2020 5:48 PM, matthew sporleder wrote:
Is what is shown in "analysis" the same as what is stored in a field?
The stored data (what you see in search results) is always exactly what was sent to Solr, modified by any update processors that are in use.
The index (what you are actually searching) will contain the results of analysis, but the stored data will not reflect that.
If you are copying fields for different analysis on the same input data, only one of them will need to be stored. There is usually no need to have a raw field in addition to an analyzed field, since the stored data on the analyzed field will be exactly the same.
Thanks, Shawn