Question

We are using solr 1.4 (I know I know, pathetic :) ) in data-config

<!-- Snippet -->
<field column="description" stripHTML="true" stored="false" indexed="false"/>

Will the "description" data still be used to calculate the "score/tf-idf" value ?

Was it helpful?

Solution

Nope. The field should be marked as indexed true to be able to be used in the relevancy scoring. i.e. indexed=true

indexed=true|false
True - if this field should be "indexed". If (and only if) a field is indexed, then it is searchable, sortable, and facetable.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top