I am having a solr Field as -
<dynamicField name="storeSKUColor_*" type="string" multiValued="true" indexed="false" stored="true" />
Issue is this field takes too much time while fetching data using solrJ.
I thought of making this field as - stored="false" docValues="true"
.
Solr did not throw any error and data is indexed properly.
Usability of this field -
- There is not sorting/faceting on this field.
- Only display value is being used.
I want to make data fetching faster using solrJ. I am not able to find any proper documentation on whether stored=true
or multivalued=true
help in performance.
I know that solrJ uses lazy loading for fields that are stored=true
.
Can anybody please guide regarding this.