solr difference between qf=text^1 and qf=content^1 -


what differences between

qf=text^1  

and

qf=content^1  

i've got 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 know if there's big differences between text , 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"/> 

the main difference between these 2 fields fact content field not stored while text field is.

to see means, can see this post explains difference between stored field , indexed field.

you can take on solr's wiki.


Comments

Popular posts from this blog

c++ - No viable overloaded operator for references a map -

java - Custom OutputStreamAppender not run: LOGBACK: No context given for <MYAPPENDER> -

java - Cannot secure connection using TLS -