Following solr tutorial ,
https://lucene.apache.org/solr/guide/7_7/solr-tutorial.html#create-a-catchall-copy-field
,without adding copyField with src = "*" and dest = "_text_" , I created my
own field named "cfield1" of type text_general and added a copyField with
src = "*" and dest = "cfield1". Po
As mentioned in
https://lucene.apache.org/solr/guide/7_7/solr-tutorial.html#create-a-catchall-copy-field
, instead of having a copyField on src="*" ,dest ="_text_" , I added a
copyField with src="*" ,dest ="cfield".
when I did copyField on src="*" ,dest ="_text_" , on firing query=comedy ,
it list
Thanks. Adding default field in solrconfig.xml worked.
--
Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html
Following
https://lucene.apache.org/solr/guide/7_7/solr-tutorial.html#field-facets , I
see in the documents , there is only genre field. In the example for
faceting , which filed do they refer by "genre_str" ? Are genre and
genre_str the same ? But I see different result when I facet on them.
Kin