Hello,
I'm currently using Solr's MoreLikeThis functionality. It's working, but slow.
I've read that "for best results, use stored TermVectors in schema.xml"
(https://wiki.apache.org/solr/MoreLikeThis).
Can anyone tell me what other steps I need to perform to enable term vector
storage, other than setting termVectors="true" for the fields in which I'm
interested in using? Do I need to optimize or any other kind of process first?
My original field declaration looks like this:
<field name="topic" omitNorms="true" indexed="true" type="text_general"
stored="true" multiValued="true"/>
and I've changed it to:
<field name="topic" omitNorms="true" indexed="true" type="text_general"
stored="true" multiValued="true" termVectors="true"/>
Thanks for your guidance!
Steve