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 listed all docs wherever there was comedy. But when I did copyField on src="*" ,dest ="cfield" , on firing query=comedy , I don't see anything fetched. numfound is 0. Can you please let me know what I am missing ? >> What do you mean does not fetch results? It returns the found documents, >> but not the text content? In this case you need to store the field. numfound is 0. No docs are returned. >> Is comedy a stop word defined by you? No , its just a text in the document. -- Sent from: http://lucene.472066.n3.nabble.com/Solr-User-f472068.html