What are the differences between
qf=text^1
and
qf=content^1
I've currently got my solr qf setup as:
<str name="qf">title^15.0 description^9.0 categoryNames^3.0 authorName^1.0 content^1.0</str>
Just wanted to know if there's any big differences between text and content.
Schema def:
<field name="content" type="text_en_splitting" indexed="true" stored="true" multiValued="true"/>
<field name="text" type="text_en_splitting" indexed="true" stored="false" multiValued="true"/>